8714-devToTest #1547

Merged
alexm merged 712 commits from 8714-devToTest into test 2025-03-04 14:08:01 +00:00
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 }