Skip to content

Commit e9036af

Browse files
Change NightlyTestManual workflow to use different stages for each test
1 parent 1279554 commit e9036af

File tree

1 file changed

+37
-8
lines changed

1 file changed

+37
-8
lines changed

.github/workflows/nightly_test_manual.yml

Lines changed: 37 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,44 @@ jobs:
5757
# Run all of the nightly tests.
5858
# TODO: We could expose more parallelism if we had one task list which ran
5959
# all of these.
60-
- name: 'Run Nightly Tests'
60+
- name: 'Run Nightly Test 1'
6161
run: |
6262
source .venv/bin/activate
6363
./run_reg_test.py -j12 \
64-
vtr_reg_nightly_test1 \
65-
vtr_reg_nightly_test2 \
66-
vtr_reg_nightly_test3 \
67-
vtr_reg_nightly_test4 \
68-
vtr_reg_nightly_test5 \
69-
vtr_reg_nightly_test6 \
70-
vtr_reg_nightly_test7
64+
vtr_reg_nightly_test1
65+
- name: 'Run Nightly Test 2'
66+
run: |
67+
source .venv/bin/activate
68+
./run_reg_test.py -j12 \
69+
vtr_reg_nightly_test2
70+
71+
- name: 'Run Nightly Test 3'
72+
run: |
73+
source .venv/bin/activate
74+
./run_reg_test.py -j12 \
75+
vtr_reg_nightly_test3
76+
77+
78+
- name: 'Run Nightly Test 4'
79+
run: |
80+
source .venv/bin/activate
81+
./run_reg_test.py -j12 \
82+
vtr_reg_nightly_test4
7183
84+
- name: 'Run Nightly Test 5'
85+
run: |
86+
source .venv/bin/activate
87+
./run_reg_test.py -j12 \
88+
vtr_reg_nightly_test5
89+
90+
- name: 'Run Nightly Test 6'
91+
run: |
92+
source .venv/bin/activate
93+
./run_reg_test.py -j12 \
94+
vtr_reg_nightly_test6
95+
96+
- name: 'Run Nightly Test 7'
97+
run: |
98+
source .venv/bin/activate
99+
./run_reg_test.py -j12 \
100+
vtr_reg_nightly_test7

0 commit comments

Comments
 (0)