Compare commits

..

1 Commits

Author SHA1 Message Date
Emmanuel Cazenave 7d80dbb504 ci: use debvm (#72899)
gitea/publik-devinst/pipeline/head Something is wrong with the build of this commit Details
2024-02-05 16:48:41 +01:00
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -7,14 +7,14 @@ pipeline {
stage('Unit Tests (bullseye)') {
steps {
catchError(stageResult: 'FAILURE') {
sh 'sudo ./test-debvm bullseye'
sh './test-debvm bullseye'
}
}
}
stage('Unit Tests (bookworm)') {
steps {
catchError(stageResult: 'FAILURE') {
sh 'sudo ./test-debvm bookworm'
sh './test-debvm bookworm'
}
}
}