does agent builtin work?

This commit is contained in:
Bryan Stitt 2023-08-09 13:26:37 -07:00
parent 805cb6ad10
commit 95b48c015e

6
Jenkinsfile vendored

@ -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