also build for xeon_1

This commit is contained in:
Bryan Stitt 2023-11-01 17:25:05 -07:00
parent 9cb863bd5d
commit 6187d12493

24
Jenkinsfile vendored
View File

@ -40,6 +40,19 @@ pipeline {
}
}
}
stage('Build and push intel_xeon1 image') {
agent {
label 'intel_xeon1'
}
environment {
ARCH="intel_xeon1"
}
steps {
script {
myBuildandPush.buildAndPush()
}
}
}
}
}
stage('push latest') {
@ -55,6 +68,17 @@ pipeline {
}
}
}
stage('maybe push latest_intel_xeon1 tag') {
agent any
environment {
ARCH="intel_xeon1"
}
steps {
script {
myPushLatest.maybePushLatest()
}
}
}
}
}
}