diff --git a/Jenkinsfile b/Jenkinsfile index f900e3ff..2317d3f6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,6 +39,10 @@ def generatePackageStep(opts, arch) { sh 'make clean' withDockerRegistry([url: "", credentialsId: "dockerbuildbot-index.docker.io"]) { sh "make CREATE_ARCHIVE=1 ${opts.image}" + if (opts.image == "docker.io/library/ubuntu:focal") { + // also build static packages + sh "make CREATE_ARCHIVE=1 ${opts.image} static" + } } archiveArtifacts(artifacts: 'archive/*.tar.gz', onlyIfSuccessful: true) } finally {