summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-07-10 11:46:40 +0200
committerChristian Poessinger <christian@poessinger.com>2021-07-10 11:46:40 +0200
commit0ba721e3f1c60be9fbb03b3c6e9867d795f5cfca (patch)
treea91ebf5230f5218966b56df2bbc7468168f696b5 /Jenkinsfile
parent239adee7560051e6e506e2859407611956608bba (diff)
downloadvyos-build-0ba721e3f1c60be9fbb03b3c6e9867d795f5cfca.tar.gz
vyos-build-0ba721e3f1c60be9fbb03b3c6e9867d795f5cfca.zip
Jenkins: drop optional QEMU build flavor
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 07deb126..319f748c 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 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 {
success {