explicit matrix because gitea runner isn't happy
All checks were successful
Build / Enumerate tests (push) Successful in -1m10s
Build / Run Test `test_basic` (push) Successful in -1m8s

This commit is contained in:
2025-08-28 20:25:33 -06:00
parent bb13d09825
commit 1533ddb4f5

View File

@@ -32,7 +32,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
test: ${{ fromJson(needs.enumerate-tests.outputs.matrix) }}
# test: ${{ fromJson(needs.enumerate-tests.outputs.matrix) }}
test:
- test_basic
max-parallel: 1
steps:
- uses: actions/checkout@v4
@@ -50,13 +52,12 @@ jobs:
echo "done" \
"
# - name: Run Simulation
# uses: docker://andrsmllr/iverilog:latest
# with:
# entrypoint: bash
# args: |
# -c "\
# cd tests/test_basic && \
# iverilog -g2012 -o test.out tb.sv ../../src/*.v -Y .sv -I ../../lib && \
# ./test.out | tee test.log
# "
- name: Run Simulation
uses: docker://andrsmllr/iverilog:latest
with:
entrypoint: bash
args: |
-c "\
# iverilog -g2012 -o test.out tb.sv ../../src/*.v -Y .sv -I ../../lib && \
./test.out | tee test.log
"