Jenkinsfile: move determinism to front (allows better parallelism)
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
8cef49cfce
commit
3517facfc0
1 changed files with 9 additions and 9 deletions
18
Jenkinsfile
vendored
18
Jenkinsfile
vendored
|
@ -14,6 +14,15 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('bw test') {
|
stage('bw test') {
|
||||||
parallel {
|
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') {
|
stage('ignore missing vaults') {
|
||||||
steps {
|
steps {
|
||||||
sh """
|
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
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue