maybe intel will work now

if not, we need to add some delays in the tests
This commit is contained in:
Bryan Stitt 2023-11-06 17:59:28 -08:00
parent 6c2917ba68
commit 249fd02115

48
Jenkinsfile vendored

@ -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()
}
}
}
}
}
}