From 86ecec5c7c33c75101e8f90817a809c3f7ee25ec Mon Sep 17 00:00:00 2001 From: Jan Thijs <92784122+janthijs@users.noreply.github.com> Date: Tue, 3 Oct 2023 14:08:08 +0200 Subject: [PATCH] fix: move order --- Jenkinsfile | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b0573a673b..faf598e341 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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') { @@ -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