Skip to content

Commit

Permalink
missing variable reconstruction for START_DAY; for #352
Browse files Browse the repository at this point in the history
  • Loading branch information
kltm committed Apr 10, 2024
1 parent 17f887f commit 9fe164d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,12 @@ pipeline {
}
}
stage('Publish') {
// CHECKPOINT: Recover key environmental variables.
environment {
START_DOW = sh(script: 'curl http://skyhook.berkeleybop.org/$BRANCH_NAME/metadata/dow.txt', , returnStdout: true).trim()
START_DATE = sh(script: 'curl http://skyhook.berkeleybop.org/$BRANCH_NAME/metadata/date.txt', , returnStdout: true).trim()
}

when { anyOf { branch 'release'; branch 'snapshot'; branch 'master' } }
steps {
// Experimental stanza to support mounting the sshfs
Expand Down

0 comments on commit 9fe164d

Please sign in to comment.