Skip to content

Commit

Permalink
Restore cron CI run from #7534 to adjust the time it starts (#7538)
Browse files Browse the repository at this point in the history
We want to run the cron job at 10 PM PST during non-DST and 11 PM PST during PST, so that the cron job does not run during office hours in London.

#7534 removed the cron job from our `.travis.yml` to allow this change. It turns out that PR was not at all necessary, and instead this is all managed through Travis's UI. So, this reverts the bad change. Instead, we will kick off the cron job in Travis's UI at the exact time desired.
  • Loading branch information
Eric-Arellano committed Apr 12, 2019
1 parent 707a040 commit 276b8db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -37,8 +37,12 @@ env:
stages:
- name: &bootstrap Bootstrap Pants
if: type != cron
- name: &bootstrap_cron Bootstrap Pants (Cron)
if: type = cron
- name: &test Test Pants
if: type != cron
- name: &test_cron Test Pants (Cron)
if: type = cron
- name: &build_stable Deploy Pants Pex
if: tag IS present AND tag =~ ^release_.*$
- name: &build_unstable Deploy Pants Pex Unstable
Expand Down
4 changes: 4 additions & 0 deletions build-support/travis/travis.yml.mustache
Expand Up @@ -30,8 +30,12 @@ env:
stages:
- name: &bootstrap Bootstrap Pants
if: type != cron
- name: &bootstrap_cron Bootstrap Pants (Cron)
if: type = cron
- name: &test Test Pants
if: type != cron
- name: &test_cron Test Pants (Cron)
if: type = cron
- name: &build_stable Deploy Pants Pex
if: tag IS present AND tag =~ ^release_.*$
- name: &build_unstable Deploy Pants Pex Unstable
Expand Down

0 comments on commit 276b8db

Please sign in to comment.