summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-08-25 10:15:29 +0200
committerChristian Poessinger <christian@poessinger.com>2021-08-25 10:15:29 +0200
commit13295638a6ad994a21dd3e530f919507495a6fec (patch)
tree649c6854d46b128303a76144faee509f6eac978f /Jenkinsfile
parent0c9de66752fb8e38d83f5aa04ef848c4b577509f (diff)
downloadvyos-build-13295638a6ad994a21dd3e530f919507495a6fec.tar.gz
vyos-build-13295638a6ad994a21dd3e530f919507495a6fec.zip
Jenkins: remove unused BUILD_QEMU parameter
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index bd042eac..ec437c31 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -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_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_QEMU', defaultValue: false, description: 'Generate QEMU image')
}
triggers {
cron('H 4 * * *')
@@ -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 {
success {