Skip to content

Commit

Permalink
Move post success step to linux node for os deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicusor Serban committed Mar 16, 2024
1 parent 348716b commit 2caacdb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -514,9 +514,11 @@ pipeline {
}
}
success {
script {
utils.updateUpstream(env,'cmdstan')
utils.mailBuildResults("SUCCESSFUL")
node("linux") {
script {
utils.updateUpstream(env,'cmdstan')
utils.mailBuildResults("SUCCESSFUL")
}
}
}
unstable { script { utils.mailBuildResults("UNSTABLE", "[email protected]") } }
Expand Down

0 comments on commit 2caacdb

Please sign in to comment.