We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c3ce1b + 576cef1 commit a6e200eCopy full SHA for a6e200e
.github/workflows/test.yml
@@ -148,18 +148,25 @@ jobs:
148
./.github/scripts/build.sh
149
./run_reg_test.py ${{ matrix.suite }} -show_failures -j2
150
151
- - name: Upload artifact
+ - name: Upload regression run files
152
uses: actions/upload-artifact@v2
153
with:
154
- name: failed_${{matrix.name}}_regression_log
+ name: ${{matrix.name}}_run_files
155
path: |
156
- vtr_flow/**/*.log
157
vtr_flow/**/*.out
158
vtr_flow/**/*.blif
159
vtr_flow/**/*.p
160
vtr_flow/**/*.net
161
vtr_flow/**/*.r
162
+ - name: Upload regression results
163
+ uses: actions/upload-artifact@v2
164
+ with:
165
+ name: ${{matrix.name}}_results
166
+ path: |
167
+ vtr_flow/**/*.log
168
+ vtr_flow/**/parse_results*.txt
169
+
170
Sanitized:
171
runs-on: ubuntu-18.04
172
strategy:
0 commit comments