diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09bf60619a2..92901f28273 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -137,18 +137,25 @@ jobs: ./.github/scripts/build.sh ./run_reg_test.py ${{ matrix.suite }} -show_failures -j2 - - name: Upload artifact + - name: Upload regression run files uses: actions/upload-artifact@v2 with: - name: failed_${{matrix.name}}_regression_log + name: ${{matrix.name}}_run_files path: | - vtr_flow/**/*.log vtr_flow/**/*.out vtr_flow/**/*.blif vtr_flow/**/*.p vtr_flow/**/*.net vtr_flow/**/*.r + - name: Upload regression results + uses: actions/upload-artifact@v2 + with: + name: ${{matrix.name}}_results + path: | + vtr_flow/**/*.log + vtr_flow/**/parse_results*.txt + Sanitized: runs-on: ubuntu-18.04 strategy: