@@ -4,6 +4,11 @@ name: NightlyTestManual
4
4
on :
5
5
workflow_dispatch :
6
6
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
+
7
12
# We want to cancel previous runs for a given PR or branch / ref if another CI
8
13
# run is requested.
9
14
# See: https://docs.github.com/en/actions/using-jobs/using-concurrency
@@ -60,41 +65,35 @@ jobs:
60
65
- name : ' Run Nightly Test 1'
61
66
run : |
62
67
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
+
65
70
- name : ' Run Nightly Test 2'
66
71
run : |
67
72
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
70
74
71
75
- name : ' Run Nightly Test 3'
72
76
run : |
73
77
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
76
79
77
80
78
81
- name : ' Run Nightly Test 4'
79
82
run : |
80
83
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
83
85
84
86
- name : ' Run Nightly Test 5'
85
87
run : |
86
88
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
89
90
90
91
- name : ' Run Nightly Test 6'
91
92
run : |
92
93
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
95
95
96
96
- name : ' Run Nightly Test 7'
97
97
run : |
98
98
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