Jenkinsfile: move determinism to front (allows better parallelism)
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-02-17 12:13:31 +01:00
parent 8cef49cfce
commit 3517facfc0
Signed by: kunsi
GPG key ID: 12E3D2136B818350

18
Jenkinsfile vendored
View file

@ -14,6 +14,15 @@ pipeline {
}
stage('bw test') {
parallel {
stage('determinism') {
steps {
sh """
. venv/bin/activate
export BW_VAULT_DUMMY_MODE=1
bw test --metadata-determinism 3 --config-determinism 3
"""
}
}
stage('ignore missing vaults') {
steps {
sh """
@ -46,15 +55,6 @@ pipeline {
"""
}
}
stage('determinism') {
steps {
sh """
. venv/bin/activate
export BW_VAULT_DUMMY_MODE=1
bw test --metadata-determinism 3 --config-determinism 3
"""
}
}
}
}
}