From 95b48c015e05b282f595240e9e0064bfd3a6fa68 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Wed, 9 Aug 2023 13:26:37 -0700 Subject: [PATCH] does agent builtin work? --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index ae2e57a0..27b668c1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,6 +19,9 @@ pipeline { } stages { stage('build and push') { + agent { + label 'builtin' + } parallel { // stage('build and push amd64_epyc2 image') { // agent { @@ -75,6 +78,9 @@ pipeline { } } stage('push latest') { + agent { + label 'builtin' + } parallel { stage('maybe push latest_arm64_graviton2 tag') { agent any