Skip to content

Commit f2bbf35

Browse files
Add automatic weekly schedule to NightlyTestManual
1 parent f4467d6 commit f2bbf35

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

.github/workflows/nightly_test_manual.yml

+13-14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ name: NightlyTestManual
44
on:
55
workflow_dispatch:
66

7+
# Automatically runs every Sunday 5 AM UTC.
8+
# Results should be ready ~15 hours later (Sunday 8 PM UTC), on time for Monday mornings.
9+
schedule:
10+
- cron: '0 5 * * 0'
11+
712
# We want to cancel previous runs for a given PR or branch / ref if another CI
813
# run is requested.
914
# See: https://docs.github.com/en/actions/using-jobs/using-concurrency
@@ -60,41 +65,35 @@ jobs:
6065
- name: 'Run Nightly Test 1'
6166
run: |
6267
source .venv/bin/activate
63-
./run_reg_test.py -j12 \
64-
vtr_reg_nightly_test1
68+
./run_reg_test.py -j12 vtr_reg_nightly_test1
69+
6570
- name: 'Run Nightly Test 2'
6671
run: |
6772
source .venv/bin/activate
68-
./run_reg_test.py -j12 \
69-
vtr_reg_nightly_test2
73+
./run_reg_test.py -j12 vtr_reg_nightly_test2
7074
7175
- name: 'Run Nightly Test 3'
7276
run: |
7377
source .venv/bin/activate
74-
./run_reg_test.py -j12 \
75-
vtr_reg_nightly_test3
78+
./run_reg_test.py -j12 vtr_reg_nightly_test3
7679
7780
7881
- name: 'Run Nightly Test 4'
7982
run: |
8083
source .venv/bin/activate
81-
./run_reg_test.py -j12 \
82-
vtr_reg_nightly_test4
84+
./run_reg_test.py -j12 vtr_reg_nightly_test4
8385
8486
- name: 'Run Nightly Test 5'
8587
run: |
8688
source .venv/bin/activate
87-
./run_reg_test.py -j12 \
88-
vtr_reg_nightly_test5
89+
./run_reg_test.py -j12 vtr_reg_nightly_test5
8990
9091
- name: 'Run Nightly Test 6'
9192
run: |
9293
source .venv/bin/activate
93-
./run_reg_test.py -j12 \
94-
vtr_reg_nightly_test6
94+
./run_reg_test.py -j12 vtr_reg_nightly_test6
9595
9696
- name: 'Run Nightly Test 7'
9797
run: |
9898
source .venv/bin/activate
99-
./run_reg_test.py -j12 \
100-
vtr_reg_nightly_test7
99+
./run_reg_test.py -j12 vtr_reg_nightly_test7

0 commit comments

Comments
 (0)