Jenkins: drop optional QEMU build flavor

This commit is contained in:
Christian Poessinger 2021-07-10 11:46:40 +02:00
parent 239adee756
commit 0ba721e3f1

10
Jenkinsfile vendored
View File

@ -56,7 +56,6 @@ pipeline {
booleanParam(name: 'BUILD_PUBLISH', defaultValue: true, description: 'Publish this build to downloads.vyos.io and AWS S3') booleanParam(name: 'BUILD_PUBLISH', defaultValue: true, description: 'Publish this build to downloads.vyos.io and AWS S3')
booleanParam(name: 'BUILD_SMOKETESTS', defaultValue: true, description: 'Include Smoketests in ISO image') booleanParam(name: 'BUILD_SMOKETESTS', defaultValue: true, description: 'Include Smoketests in ISO image')
booleanParam(name: 'BUILD_SNAPSHOT', defaultValue: false, description: 'Upload image to AWS S3 snapshot bucket') booleanParam(name: 'BUILD_SNAPSHOT', defaultValue: false, description: 'Upload image to AWS S3 snapshot bucket')
booleanParam(name: 'BUILD_QEMU', defaultValue: false, description: 'Generate QEMU image')
} }
triggers { triggers {
cron('H 2 * * *') cron('H 2 * * *')
@ -130,15 +129,6 @@ pipeline {
} }
} }
} }
stage('Build QEMU image') {
when {
expression { fileExists 'build/live-image-amd64.hybrid.iso' }
expression { return params.BUILD_QEMU }
}
steps {
sh "sudo make qemu"
}
}
} }
post { post {
success { success {