Skip to content

Commit bdc72eb

Browse files
authored
Merge pull request #64 from StackStorm-Exchange/run_nightly_builds_for_all_packs
Run nightly build for every pack
2 parents 29b18cc + c0c930d commit bdc72eb

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

.circle/circle.yml.sample

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ jobs:
112112

113113
workflows:
114114
version: 2
115-
build_test_deploy:
115+
# Workflow which runs on each push
116+
build_test_deploy_on_push:
116117
jobs:
117118
- build_and_test_python27
118119
- build_and_test_python36
@@ -122,3 +123,18 @@ workflows:
122123
filters:
123124
branches:
124125
only: master
126+
build_test_weekly:
127+
jobs:
128+
- build_and_test_python27
129+
- build_and_test_python36
130+
# Workflow which runs nightly - note we don't perform deploy job on nightly
131+
# build
132+
triggers:
133+
# Run nightly build for the pack
134+
- schedule:
135+
# NOTE: We run it at 1 am UTC on every Saturday
136+
cron: "0 1 * * 6"
137+
filters:
138+
branches:
139+
only:
140+
- master

0 commit comments

Comments
 (0)