diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-09 23:46:56 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-02-09 23:46:56 +0100 |
commit | aec60effa4e36ea35babf507bc843c69ae440efe (patch) | |
tree | b61bdb82d2f66f58b6817964ee7c8fdb113cedc7 /vars | |
parent | 6b8baa9751de164591c7f4d8ef7f47c8eca8e77d (diff) | |
download | vyos-build-aec60effa4e36ea35babf507bc843c69ae440efe.tar.gz vyos-build-aec60effa4e36ea35babf507bc843c69ae440efe.zip |
Jenkins: disable arm64 builds again
Diffstat (limited to 'vars')
-rw-r--r-- | vars/buildPackage.groovy | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/vars/buildPackage.groovy b/vars/buildPackage.groovy index 14f59f65..7dc3fe52 100644 --- a/vars/buildPackage.groovy +++ b/vars/buildPackage.groovy @@ -77,29 +77,29 @@ def call(description=null, pkgList=null, buildCmd=null, buildArm=false) { } } } - stage('arm64') { - agent { - docker { - args "${env.DOCKER_ARGS}" - image "${env.DOCKER_IMAGE}-arm64" - alwaysPull true - reuseNode true - } - } - when { - equals expected: true, actual: buildArm - } - environment { - // get relative directory path to Jenkinsfile - BASE_DIR = getJenkinsfilePath() - CHANGESET_DIR = getChangeSetPath() - } - steps { - script { - cloneAndBuild(description, 'arm64', pkgList, buildCmd) - } - } - } +// stage('arm64') { +// agent { +// docker { +// args "${env.DOCKER_ARGS}" +// image "${env.DOCKER_IMAGE}-arm64" +// alwaysPull true +// reuseNode true +// } +// } +// when { +// equals expected: true, actual: buildArm +// } +// environment { +// // get relative directory path to Jenkinsfile +// BASE_DIR = getJenkinsfilePath() +// CHANGESET_DIR = getChangeSetPath() +// } +// steps { +// script { +// cloneAndBuild(description, 'arm64', pkgList, buildCmd) +// } +// } +// } } } } |