From 6d235b520c88458a0a70da85bfe9c738d9cec5f5 Mon Sep 17 00:00:00 2001 From: Ganesh Gore Date: Thu, 7 Oct 2021 12:20:52 -0600 Subject: [PATCH 1/3] [Cleanup] Removed failed keyword from artifact lable --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09bf60619a2..7241e1c2d62 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -140,7 +140,7 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v2 with: - name: failed_${{matrix.name}}_regression_log + name: ${{matrix.name}}_regression_log path: | vtr_flow/**/*.log vtr_flow/**/*.out From 616aee379f18330b786ab84e6fb2f81ee495d389 Mon Sep 17 00:00:00 2001 From: Ganesh Gore Date: Thu, 7 Oct 2021 12:24:04 -0600 Subject: [PATCH 2/3] Added golden results as CI artifacts --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7241e1c2d62..fedf38647c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -149,6 +149,13 @@ jobs: vtr_flow/**/*.net vtr_flow/**/*.r + - name: Upload golden results + uses: actions/upload-artifact@v2 + with: + name: ${{matrix.name}}_golden_results + path: | + vtr_flow/**/parse_results*.txt + Sanitized: runs-on: ubuntu-18.04 strategy: From 576cef1b82110f7ecd974a597bdc7037fe6a5fd7 Mon Sep 17 00:00:00 2001 From: Ganesh Gore Date: Thu, 21 Oct 2021 10:04:03 -0600 Subject: [PATCH 3/3] Updated CI setup --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fedf38647c1..92901f28273 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -137,23 +137,23 @@ 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: ${{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 golden results + - name: Upload regression results uses: actions/upload-artifact@v2 with: - name: ${{matrix.name}}_golden_results + name: ${{matrix.name}}_results path: | + vtr_flow/**/*.log vtr_flow/**/parse_results*.txt Sanitized: