From a04a623094e887d662bd7587c6b1daede1a38aee Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 18 Sep 2023 14:33:12 -0700 Subject: [PATCH] Revert "Added new stagfe to check and cancel old job (#215)" This reverts commit ac2c053519c92203f66a617e997afbc9b1ad773a. --- Jenkinsfile | 55 +++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 39 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 46e14e7f..ae2e57a0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,24 +18,34 @@ pipeline { LATEST_BRANCH="main" } stages { - stage('Check and Cancel Old Builds') { - steps { - script { - def currentBuildNumber = currentBuild.number - - // Check all build from same project - for (build in currentBuild.rawBuild.getParent().getBuilds()) { - // Check if an older build is still running and cancel it in favor of the new one - if (build.number < currentBuildNumber && build.building) { - echo "Cancelling build ${build.number}" - build.doStop() - } - } - } - } - } stage('build and push') { parallel { + // stage('build and push amd64_epyc2 image') { + // agent { + // label 'amd64_epyc2' + // } + // environment { + // ARCH="amd64_epyc2" + // } + // steps { + // script { + // myBuildandPush.buildAndPush() + // } + // } + // } + // stage('build and push amd64_epyc3 image') { + // agent { + // label 'amd64_epyc3' + // } + // environment { + // ARCH="amd64_epyc3" + // } + // steps { + // script { + // myBuildandPush.buildAndPush() + // } + // } + // } stage('Build and push arm64_graviton2 image') { agent { label 'arm64_graviton2' @@ -49,6 +59,19 @@ pipeline { } } } + // stage('Build and push intel_xeon3 image') { + // agent { + // label 'intel_xeon3' + // } + // environment { + // ARCH="intel_xeon3" + // } + // steps { + // script { + // myBuildandPush.buildAndPush() + // } + // } + // } } } stage('push latest') {