File tree Expand file tree Collapse file tree 1 file changed +2
-31
lines changed
Expand file tree Collapse file tree 1 file changed +2
-31
lines changed Original file line number Diff line number Diff line change 8383 shell : bash
8484 run : docker push "${GHCR_IMAGE}:${IMAGE_TAG}"
8585
86- riscv :
87- runs-on : ubuntu-22.04
88- needs : build-and-push-image
89-
90-
91- steps :
92- - name : Log in to GHCR
93- uses : docker/login-action@v3
94- with :
95- registry : ghcr.io
96- username : ${{ github.actor }}
97- password : ${{ secrets.GITHUB_TOKEN }}
98-
99- - name : Pull CI image
100- run : docker pull "${GHCR_IMAGE}:${IMAGE_TAG}"
101-
102- - name : Check
103- run : |
104- docker run --rm \
105- -v "$PWD":/work \
106- -w /work \
107- "${GHCR_IMAGE}:${IMAGE_TAG}" \
108- bash -lc '
109- echo $PATH
110- which riscv32-unknown-elf-gcc
111- ls /opt/lowrisc-toolchain/bin/
112- riscv32-unknown-elf-gcc --version
113- '
114-
11586 smoke-test :
11687 runs-on : ubuntu-22.04
11788 needs : build-and-push-image
@@ -145,7 +116,7 @@ jobs:
145116 -v "$PWD":/work \
146117 -w /work \
147118 "${GHCR_IMAGE}:${IMAGE_TAG}" \
148- bash -lc '
119+ bash -c '
149120 mkdir -p run/work
150121 make TEST=param_test smoke_test
151122 '
@@ -183,7 +154,7 @@ jobs:
183154 -v "$PWD":/work \
184155 -w /work \
185156 "${GHCR_IMAGE}:${IMAGE_TAG}" \
186- bash -lc '
157+ bash -c '
187158 fusesoc library add sa_ip "$(pwd -P)" || true
188159 mkdir -p run/work
189160 make TEST=ibex_test smoke_test iclean ibuild irun verify_ibex
You can’t perform that action at this time.
0 commit comments