bundlewrap/Jenkinsfile
Franzi f355d1ec7b
All checks were successful
bundlewrap/pipeline/head This commit looks good
Jenkinsfile: don't try to send mails. Doesn't work.
2020-11-13 22:16:20 +01:00

55 lines
1.5 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') {
when {
branch 'main'
}
steps {
sh """
. venv/bin/activate
export BW_VAULT_DUMMY_MODE=1
bw test
"""
}
}
stage('determinism') {
steps {
sh """
. venv/bin/activate
export BW_VAULT_DUMMY_MODE=1
bw test --metadata-determinism 3 --config-determinism 3
"""
}
}
}
}
}
post {
always {
sh 'rm -rf venv'
}
}
}