diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 934f4e44790..1779a43cbea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,6 @@ jobs: restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- - - name: Run Tests run: | ./tools/spike/bin/spike -v || ./tools/bin/verilator -v @@ -68,3 +67,11 @@ jobs: export RISCV=$(pwd)/tools/riscv-toolchain/ source verif/sim/setup-env.sh DV_SIMULATORS=${{matrix.target}} bash ${{matrix.testcase}} + + - name: Upload Lint Report to Github + uses: actions/upload-artifact@v3 + with: + name: ${{matrix.target}}-${{matrix.testcase}} + path: verif/sim/out* + retention-days: 10 +