Skip to content

Commit

Permalink
ci: schedule daily CI for branch 9.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
clydin authored and filipesilva committed May 20, 2020
1 parent b626308 commit ed40356
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ jobs:

workflows:
version: 2
default_workflow:
commits:
jobs:
# Linux jobs
- setup
Expand Down Expand Up @@ -449,3 +449,29 @@ workflows:
only: /^v\d+/
branches:
ignore: /.*/
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only:
- 9.1.x
jobs:
- setup
- build:
requires:
- setup
- test:
requires:
- build
- test-large:
requires:
- build
- test-browsers:
requires:
- build
- e2e-cli:
name: e2e-cli-nightly
requires:
- build

0 comments on commit ed40356

Please sign in to comment.