feat: docker pull back image #740

Open
alexm wants to merge 46 commits from 6695-docker_push into dev
1 changed files with 20 additions and 0 deletions
Showing only changes of commit fb20a89e59 - Show all commits

20
Jenkinsfile vendored
View File

@ -83,6 +83,26 @@ pipeline {
}
}
}
stage('E2E') {
when {
expression { !PROTECTED_BRANCH }
}
environment {
CREDENTIALS = credentials('docker-registry')
IMAGE = "$REGISTRY/salix-back"
}
steps {
sh 'docker pull $IMAGE:$GIT_BRANCH'
}
post {
always {
junit(
testResults: 'junitresults.xml',
allowEmptyResults: true
)
}
}
}
stage('Build') {
when {
expression { PROTECTED_BRANCH }