File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ RUN apt-get update && \
1515 help2man perl python3 make autoconf g++ mold flex bison ccache libfl2 libfl-dev
1616
1717# Build Verilator
18- RUN git clone --branch ${VERILATOR_VERSION} https://github.com/verilator/verilator.git
18+ RUN git clone --branch ${VERILATOR_VERSION} --depth 1 https://github.com/verilator/verilator.git
1919RUN cd verilator && \
2020 autoconf && \
2121 ./configure --prefix ${VERILATOR_INSTALL} && \
Original file line number Diff line number Diff line change @@ -15,14 +15,17 @@ jobs:
1515 test :
1616 # The action itself runs on ubuntu-latest, but the commands execute inside the dev container
1717 runs-on : ubuntu-latest
18+ continue-on-error : true
1819 strategy :
1920 fail-fast : false
2021 matrix :
2122 python-version : ['3.10'] # '3.11', '3.12', '3.13']
2223
23- name : Python ${{ matrix.python-version }} Tests
24+ name : Python ${{ matrix.python-version }} tests
2425 steps :
2526 - uses : actions/checkout@v4
27+ with :
28+ fetch-depth : 0
2629
2730 # Use the devcontainers/ci action to run steps inside the container
2831 - name : Install Python ${{ matrix.python-version }} and project dependencies
5255 with :
5356 runCmd : uv run poe check-types
5457
55- - name : Run tests
58+ - name : Run all tests
5659 uses : devcontainers/ci@v0.3
5760 with :
5861 runCmd : uv run poe test
You can’t perform that action at this time.
0 commit comments