Skip to content

Commit f73ad53

Browse files
Add golden result artifact upload to NightlyTestManual
1 parent a0b8415 commit f73ad53

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/nightly_test_manual.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,23 @@ jobs:
114114
vtr_flow/**/*.log
115115
vtr_flow/**/vpr.out
116116
vtr_flow/**/parse_results*.txt
117+
118+
- name: Generate golden results
119+
if: success() || failure()
120+
run: |
121+
source .venv/bin/activate
122+
./run_reg_test.py vtr_reg_nightly_test1 -create_golden
123+
./run_reg_test.py vtr_reg_nightly_test2 -create_golden
124+
./run_reg_test.py vtr_reg_nightly_test3 -create_golden
125+
./run_reg_test.py vtr_reg_nightly_test4 -create_golden
126+
./run_reg_test.py vtr_reg_nightly_test5 -create_golden
127+
./run_reg_test.py vtr_reg_nightly_test6 -create_golden
128+
./run_reg_test.py vtr_reg_nightly_test7 -create_golden
129+
130+
- name: Upload golden results
131+
if: success() || failure()
132+
uses: actions/upload-artifact@v4
133+
with:
134+
name: nightly_tests_golden
135+
path: |
136+
vtr_flow/**/vtr_reg_nightly*/**/golden_results.txt

0 commit comments

Comments
 (0)