Skip to content

Commit f13e22d

Browse files
engdoreismarnovandermaas
authored andcommitted
[ci] Update artefacts published on release
Add the hello world elf for verilator.
1 parent 9a1d3c1 commit f13e22d

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,12 @@ jobs:
9292
- name: Generate artefacts
9393
run: |
9494
cmake -B build/sw -S sw
95-
cmake --build build/sw -j $(nproc) --target hello_world
96-
cmake --install build/sw/ --prefix release --component hello_world
95+
96+
for t in hello_world hello_world_verilator; do
97+
cmake --build build/sw -j $(nproc) --target $t
98+
cmake --install build/sw/ --prefix release --component $t
99+
done
100+
97101
tar -czvf ${{ env.ARTEFACT }} release
98102
99103
- uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)