Skip to content

Commit

Permalink
Run cron schedule in circleci (square#4862)
Browse files Browse the repository at this point in the history
  • Loading branch information
yschimke committed Apr 3, 2019
1 parent f83441f commit 008c783
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,31 @@ jobs:

workflows:
version: 2
build-check-and-test:
commit:
jobs:
- dependencies
- checkjdk8:
requires:
- dependencies
filters:
branches:
ignore: master
- testjdk8:
requires:
- dependencies
- testjdk11:
requires:
- dependencies
filters:
branches:
only: master
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only: master
jobs:
- compile
- checkjdk8:
Expand Down

0 comments on commit 008c783

Please sign in to comment.