Skip to content

Commit 2ab61d1

Browse files
committed
ci: update
1 parent f377191 commit 2ab61d1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
1919
RUN cd verilator && \
2020
autoconf && \
2121
./configure --prefix ${VERILATOR_INSTALL} && \

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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
@@ -52,7 +55,7 @@ jobs:
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

0 commit comments

Comments
 (0)