diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-25 07:47:41 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-25 09:02:21 +0100 |
commit | 3ccfd2bf06c7d11d6244aa1307d5ac2142de0cdb (patch) | |
tree | 4a9e9db9a067a0a35b42ab5d6415d38b3165d0b5 /Jenkinsfile | |
parent | 5a1306161a4edff461046f2b602577b5a1b8ee25 (diff) | |
download | vyos-build-3ccfd2bf06c7d11d6244aa1307d5ac2142de0cdb.tar.gz vyos-build-3ccfd2bf06c7d11d6244aa1307d5ac2142de0cdb.zip |
Jenkins: add build parameter for image upload and smoketests
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index bd25caf..72def17 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -107,6 +107,8 @@ pipeline { parameters { string(name: 'BUILD_BY', defaultValue: 'autobuild@vyos.net', description: 'Builder identifier (e.g. jrandomhacker@example.net)') string(name: 'BUILD_VERSION', defaultValue: '1.4-rolling-' + env.TIMESTAMP, description: 'Version number (release builds only)') + 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') } triggers { cron('H 2 * * *') @@ -140,14 +142,16 @@ pipeline { def commitId = sh(returnStdout: true, script: 'git rev-parse --short=11 HEAD').trim() currentBuild.description = sprintf('Git SHA1: %s', commitId[-11..-1]) + def CUSTOM_PACKAGES = '' + if (params.BUILD_SMOKETESTS) + CUSTOM_PACKAGES = '--custom-package vyos-1x-smoketest' + sh """ - env ./configure \ --build-by ${params.BUILD_BY} \ --debian-mirror http://ftp.us.debian.org/debian/ \ --build-type release \ - --version ${params.BUILD_VERSION} \ - --custom-package "vyos-1x-smoketest" + --version ${params.BUILD_VERSION} ${CUSTOM_PACKAGES} sudo make iso """ @@ -158,6 +162,9 @@ pipeline { } } stage('QEMU') { + when { + expression { return params.BUILD_SMOKETESTS } + } parallel { stage('Smoketests') { when { @@ -192,6 +199,8 @@ pipeline { // only deploy ISO if build from official repository if (isCustomBuild()) return + if (! params.BUILD_PUBLISH) + return files = findFiles(glob: 'build/vyos*.iso') if (files) { |