From 01094ae4f0744dbe7add97d5f47bdbe3c3795dd3 Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 1 Mar 2021 14:56:56 -0800 Subject: [PATCH] Don't upload coverage artifacts --- .github/workflows/ci.yml | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d3b4a2a..17901f2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,8 @@ jobs: export OPENRAM_HOME="`pwd`/compiler" export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech" export OPENRAM_TMP="${{ github.workspace }}/scn4me_subm_temp" - python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 16 -t scn4m_subm + #python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 12 -t scn4m_subm + $OPENRAM_HOME/tests/regress.py -j 12 -t scn4m_subm - name: Archive if: ${{ failure() }} uses: actions/upload-artifact@v2 @@ -33,26 +34,27 @@ jobs: export OPENRAM_HOME="`pwd`/compiler" export OPENRAM_TECH="`pwd`/technology:/software/PDKs/skywater-tech" export OPENRAM_TMP="${{ github.workspace }}/freepdk45_temp" - python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 16 -t freepdk45 + #python3-coverage run -p $OPENRAM_HOME/tests/regress.py -j 12 -t freepdk45 + $OPENRAM_HOME/tests/regress.py -j 12 -t freepdk45 - name: Archive if: ${{ failure() }} uses: actions/upload-artifact@v2 with: name: FreePDK45 Archives path: ${{ github.workspace }}/freepdk45_temp/*/ - coverage_stats: - if: ${{ always() }} - needs: [scn4me_subm, freepdk45] - runs-on: self-hosted - steps: - - name: Coverage stats - run: | - python3-coverage combine - python3-coverage report - python3-coverage html -d ${{ github.workspace }}/coverage_html - - name: Archive coverage - uses: actions/upload-artifact@v2 - with: - name: code-coverage-report - path: ${{ github.workspace }}/coverage_html/ + # coverage_stats: + # if: ${{ always() }} + # needs: [scn4me_subm, freepdk45] + # runs-on: self-hosted + # steps: + # - name: Coverage stats + # run: | + # python3-coverage combine + # python3-coverage report + # python3-coverage html -d ${{ github.workspace }}/coverage_html + # - name: Archive coverage + # uses: actions/upload-artifact@v2 + # with: + # name: code-coverage-report + # path: ${{ github.workspace }}/coverage_html/