Skip to content

Commit ceae587

Browse files
Merge pull request #2910 from verilog-to-routing/nightly-test-fail-nostop
Make Nightly Tests Continue on Error
2 parents e10dd3a + 0d001e7 commit ceae587

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/nightly_test_manual.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,37 +63,44 @@ jobs:
6363
# TODO: We could expose more parallelism if we had one task list which ran
6464
# all of these.
6565
- name: 'Run Nightly Test 1'
66+
if: success() || failure()
6667
run: |
6768
source .venv/bin/activate
6869
./run_reg_test.py -j12 vtr_reg_nightly_test1
6970
7071
- name: 'Run Nightly Test 2'
72+
if: success() || failure()
7173
run: |
7274
source .venv/bin/activate
7375
./run_reg_test.py -j12 vtr_reg_nightly_test2
7476
7577
- name: 'Run Nightly Test 3'
78+
if: success() || failure()
7679
run: |
7780
source .venv/bin/activate
7881
./run_reg_test.py -j12 vtr_reg_nightly_test3
7982
8083
8184
- name: 'Run Nightly Test 4'
85+
if: success() || failure()
8286
run: |
8387
source .venv/bin/activate
8488
./run_reg_test.py -j12 vtr_reg_nightly_test4
8589
8690
- name: 'Run Nightly Test 5'
91+
if: success() || failure()
8792
run: |
8893
source .venv/bin/activate
8994
./run_reg_test.py -j12 vtr_reg_nightly_test5
9095
9196
- name: 'Run Nightly Test 6'
97+
if: success() || failure()
9298
run: |
9399
source .venv/bin/activate
94100
./run_reg_test.py -j12 vtr_reg_nightly_test6
95101
96102
- name: 'Run Nightly Test 7'
103+
if: success() || failure()
97104
run: |
98105
source .venv/bin/activate
99106
./run_reg_test.py -j12 vtr_reg_nightly_test7

0 commit comments

Comments
 (0)