Skip to content

Commit 18708d6

Browse files
verilator-ci: directly download SW env in tests instead of setup (which does not seem to work)
1 parent 234149b commit 18708d6

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed

.github/workflows/verilator-ci.yml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,11 @@ jobs:
3232
mkdir -p utils/bin && touch utils/bin/bender
3333
make checkout
3434
make verilate
35-
- name: SW sanity check
36-
shell: bash
37-
env:
38-
VERILATOR_PATH: /workspaces/build/verilator
39-
run: |
40-
cd /workspaces
41-
git submodule update --init --recursive
42-
source sw/pulp-runtime/configs/pulpissimo_cv32.sh
4335
- name: Upload prebuilt Verilator
4436
uses: actions/upload-artifact@v4
4537
with:
4638
name: built-verilator
4739
path: /workspaces/build/verilator
48-
- name: Upload checked out software
49-
uses: actions/upload-artifact@v4
50-
with:
51-
name: built-sw
52-
path: /workspaces/sw
5340

5441
verilator-ci-tests:
5542
name: Public Verilator CI (tests)
@@ -116,11 +103,10 @@ jobs:
116103
with:
117104
name: built-verilator
118105
path: /workspaces/build/verilator
119-
- name: Download checked out software
120-
uses: actions/download-artifact@v4
121-
with:
122-
name: built-sw
123-
path: /workspaces/sw
106+
- name: Checkout software
107+
shell: bash
108+
run: |
109+
git submodule update --init --recursive
124110
- name: SW tests
125111
shell: bash
126112
env:

0 commit comments

Comments
 (0)