HBASE-21424 Change flakies and nightlies so scheduled less often
Have flakies run every four hours instead of every hour and nightlies every 12 hours instead of every 6.
This commit is contained in:
parent
29e3eec703
commit
62d73d2068
|
@ -21,7 +21,7 @@ pipeline {
|
|||
}
|
||||
}
|
||||
triggers {
|
||||
cron('H */6 * * *') // Run every 6 hours.
|
||||
cron('H */12 * * *') // Run every 12 hours. See https://jenkins.io/doc/book/pipeline/syntax/#cron-syntax
|
||||
}
|
||||
options {
|
||||
buildDiscarder(logRotator(numToKeepStr: '30'))
|
||||
|
|
|
@ -21,7 +21,7 @@ pipeline {
|
|||
}
|
||||
}
|
||||
triggers {
|
||||
cron('@hourly')
|
||||
cron('H */4 * * *') // Every four hours. See https://jenkins.io/doc/book/pipeline/syntax/#cron-syntax
|
||||
}
|
||||
options {
|
||||
// this should roughly match how long we tell the flaky dashboard to look at
|
||||
|
|
Loading…
Reference in New Issue