Skip to content

Commit

Permalink
Don't generate vcd
Browse files Browse the repository at this point in the history
Upload commit hashes
  • Loading branch information
kareefardi committed Apr 15, 2024
1 parent c5fe469 commit 966fa0c
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/actions/run-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ runs:
run: |
for test in ${{ inputs.test-names }}; do
echo "Running Test $test"
make run_$test
make run_$test RTL_MACROS="-DSKIP_WAVE_DUMP"
done
- name: Check for test results in run
- name: Check Test Results
shell: bash
working-directory: /home/runner/work/${{ inputs.name }}/verify/uvm-python
run: |
Expand All @@ -50,6 +50,17 @@ runs:
else
echo "All tests passed successfully"
fi
- name: Save IP Commit Hash
shell: bash
working-directory: /home/runner/work/${{ inputs.name }}/verify/uvm-python
run: git rev-parse --verify HEAD > /tmp/ip-commit-hash.txt
- name: Save EF_UVM Commit Hash
shell: bash
run: git rev-parse --verify HEAD > /tmp/EF_UVM-commit-hash.txt
- uses: actions/upload-artifact@v4
with:
name: my-artifact
path: /tmp/*hash.txt



0 comments on commit 966fa0c

Please sign in to comment.