From 249fd0211596e102cc71fd4c852e6e42d8a9c484 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 6 Nov 2023 17:59:28 -0800 Subject: [PATCH] maybe intel will work now if not, we need to add some delays in the tests --- Jenkinsfile | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index dccd797d..691a4bfd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -40,19 +40,19 @@ pipeline { } } } - // stage('Build and push intel_xeon1 image') { - // agent { - // label 'intel_xeon1' - // } - // environment { - // ARCH="intel_xeon1" - // } - // steps { - // script { - // myBuildAndPush.buildAndPush() - // } - // } - // } + stage('Build and push intel_xeon1 image') { + agent { + label 'intel_xeon1' + } + environment { + ARCH="intel_xeon1" + } + steps { + script { + myBuildAndPush.buildAndPush() + } + } + } } } stage('push latest') { @@ -68,17 +68,17 @@ pipeline { } } } - // stage('maybe push latest_intel_xeon1 tag') { - // agent any - // environment { - // ARCH="intel_xeon1" - // } - // steps { - // script { - // myPushLatest.maybePushLatest() - // } - // } - // } + stage('maybe push latest_intel_xeon1 tag') { + agent any + environment { + ARCH="intel_xeon1" + } + steps { + script { + myPushLatest.maybePushLatest() + } + } + } } } }