Skip to content

Commit

Permalink
fix: move order
Browse files Browse the repository at this point in the history
  • Loading branch information
janthijs committed Oct 3, 2023
1 parent 7aa87f3 commit 86ecec5
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,24 @@ pipeline {

stages {

// RELEASE NOTES

stage('Release notes') {
when {
branch 'production-release-v*'
branch 'MIJN-6651-release'
}
options {
timeout(time: 5, unit: 'MINUTES')
}
steps {
sh "docker build -f ./Dockerfile.release" +
"--shm-size 1G " +
"."
}
}


// RUN TESTS

stage('Unit tests') {
Expand Down Expand Up @@ -63,21 +81,6 @@ pipeline {
}
}

// RELEASE NOTES
stage('Release notes') {
when {
branch 'production-release-v*'
branch 'MIJN-6651-release'
}
options {
timeout(time: 5, unit: 'MINUTES')
}
steps {
sh "docker build -f ./Dockerfile.release" +
"--shm-size 1G " +
"."
}
}

// ACCEPTANCE

Expand Down

0 comments on commit 86ecec5

Please sign in to comment.