Skip to content

Commit 2c8282f

Browse files
native-apiskvark
authored andcommitted
Further increase time limits for the cache jobs
1 parent 7af6a35 commit 2c8282f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

travis_osx_brew_cache.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ BREW_TIME_START=$(($TRAVIS_TIMER_START_TIME/10**9))
1111
# If after a package is built, elapsed time is more than this many seconds, fail the build but save Travis cache
1212
# The cutoff moment should leave enough time till Travis' job time limit to process the main project.
1313
# Since we have moved deps into a separate stage, we don't need to leave time for the project any more
14-
BREW_TIME_LIMIT=$((38*60))
14+
BREW_TIME_LIMIT=$((42*60))
1515
# If a slow-building package is about to be built and the projected build end moment is beyond this many seconds,
1616
# skip that build, fail the Travis job and save Travis cache.
1717
# This cutoff should leave enough time for before_cache and cache save.
18-
BREW_TIME_HARD_LIMIT=$((40*60))
18+
BREW_TIME_HARD_LIMIT=$((43*60))
1919

2020

2121
# Auto cleanup can delete locally-built bottles

0 commit comments

Comments
 (0)