Disable retries in Jenkins CI, since we're now using On-Demand instances instead of Spot (#3948)

This commit is contained in:
Philip Hyunsu Cho
2018-11-28 14:57:09 -08:00
committed by GitHub
parent c5130e487a
commit c5f92df475
2 changed files with 3 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ pipeline {
stage('Jenkins: Build doc') {
steps {
script {
retry(3) {
retry(1) {
node('linux && cpu && restricted') {
unstash name: 'srcs'
echo 'Building doc...'
@@ -99,7 +99,7 @@ def buildPlatformCmake(buildName, conf, nodeReq, dockerTarget) {
dockerArgs = "--build-arg CUDA_VERSION=" + conf["cudaVersion"]
}
// Build node - this is returned result
retry(3) {
retry(1) {
node(nodeReq) {
unstash name: 'srcs'
echo """