jenkins: add tests for bookworm (new debian testing version) (#56167)

This commit is contained in:
Frédéric Péters 2021-08-15 09:35:52 +02:00
parent 7e087af109
commit 2e9b8b4fa3
2 changed files with 11 additions and 2 deletions

11
Jenkinsfile vendored
View File

@ -4,12 +4,21 @@ pipeline {
agent any
options { disableConcurrentBuilds() }
stages {
stage('Unit Tests') {
stage('Unit Tests (buster)') {
steps {
sh 'sudo ./test-nspawn buster'
}
}
stage('Unit Tests (bullseye)') {
steps {
sh 'sudo ./test-nspawn bullseye'
}
}
stage('Unit Tests (bookworm)') {
steps {
sh 'sudo ./test-nspawn bookworm'
}
}
}
post {
always {

View File

@ -1,7 +1,7 @@
#!/bin/sh
set -ex
if [ $1 = 'buster' || $1 = 'bullseye' ]
if [ $1 = buster ] || [ $1 = bullseye ] || [ $1 = bookworm ]
then
suite=$1
image=publik-devinst-$suite