Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Remove cron build for release branches (#594)
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Etchells <[email protected]>
  • Loading branch information
Tim Etchells authored May 11, 2020
1 parent 0f44326 commit 5ed0d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ echo "Is release branch build ? ${IS_RELEASE_BRANCH}"
// https://stackoverflow.com/a/44902622
def CRON_STRING = ""
// https://jenkins.io/doc/book/pipeline/syntax/#cron-syntax
if (IS_MASTER_BRANCH || IS_RELEASE_BRANCH) {
if (IS_MASTER_BRANCH) {
// Build daily between 0600-0659
CRON_STRING = "H 6 * * *"
}
Expand Down

0 comments on commit 5ed0d9b

Please sign in to comment.