bundlewrap/Jenkinsfile
Franzi 6ecdb5be47
Some checks failed
bundlewrap/pipeline/head There was a failure building this commit
improve Jenkinsfile, do more testing
2020-05-16 10:17:51 +02:00

61 lines
1.8 KiB
Groovy

pipeline {
agent any
stages {
stage('install_requirements') {
steps {
sh """
[ -d venv ] && rm -rf venv
virtualenv -p python3 venv
. venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
"""
}
}
stage('bw test') {
parallel {
stage('ignore missing vaults') {
steps {
sh """
. venv/bin/activate
bw test --ignore-missing-faults
"""
}
}
stage('dummy mode') {
steps {
sh """
. venv/bin/activate
export BW_VAULT_DUMMY_MODE=1
bw test
"""
}
}
stage('secret rotation') {
steps {
sh """
. venv/bin/activate
export BW_VAULT_DUMMY_MODE=1
bw test -s ''
"""
}
}
stage('determinism') {
steps {
sh """
. venv/bin/activate
export BW_VAULT_DUMMY_MODE=1
bw test --metadata-determinism 3 --config-determinism 3
"""
}
}
}
}
stage('cleanup') {
steps {
sh 'rm -rf venv'
}
}
}
}