Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ cd ivtest
status=0

perl vvp_reg.pl || status=1
mv log vvp_log

perl vpi_reg.pl || status=1

Expand Down
21 changes: 20 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ jobs:

- name: Test
run: ./.github/test.sh

- name: Archive test logs
if: always()
uses: actions/upload-artifact@v4
with:
name: test-logs-macOS
path: ivtest/*log/*

lin:
strategy:
Expand Down Expand Up @@ -67,6 +72,13 @@ jobs:
- name: Test
run: ./.github/test.sh

- name: Archive test logs
if: always()
uses: actions/upload-artifact@v4
with:
name: test-logs-ubuntu-${{ matrix.os }}
path: ivtest/*log/*

- name: Documentation
run: |
cd Documentation
Expand Down Expand Up @@ -120,6 +132,13 @@ jobs:
run: |
./.github/test.sh

- name: Archive test logs
if: always()
uses: actions/upload-artifact@v4
with:
name: test-logs-${{ matrix.msystem }}-${{ matrix.arch }}
path: ivtest/*log/*

- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.msystem }}-${{ matrix.arch }}
Expand Down
Loading