Skip to content

Commit

Permalink
ci: schedule nightly CI for 10.1.x branch
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 committed Oct 20, 2020
1 parent c430d36 commit 080957d
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ commands:
sudo apt-get update > /dev/null 2>&1
sudo apt-get install -y python
python --version
# Job definitions
jobs:
setup:
Expand Down Expand Up @@ -325,7 +324,7 @@ jobs:

workflows:
version: 2
default_workflow:
commits:
jobs:
# Linux jobs
- setup
Expand All @@ -338,10 +337,6 @@ workflows:
- build:
requires:
- setup
filters:
branches:
ignore:
- /docs-preview/
- e2e-cli:
post-steps:
- store_artifacts:
Expand Down Expand Up @@ -420,3 +415,29 @@ workflows:
- build
- test
- e2e-cli

nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only:
- 10.1.x
jobs:
# Linux jobs
- setup
- build:
requires:
- setup
- e2e-cli:
requires:
- build
- e2e-cli:
name: e2e-cli-ve
ve: true
requires:
- build
- test-browsers:
requires:
- build

0 comments on commit 080957d

Please sign in to comment.