Skip to content

Commit d402119

Browse files
authored
Merge pull request #238 from kaspar030/add_laze
riotbuild: add laze 0.1.20
2 parents 366011d + dce5474 commit d402119

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/build.yml

+5
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ jobs:
152152
DOCKER_IMAGE: ${{ env.DOCKER_REGISTRY }}/riotbuild:latest
153153
BOARDS: "esp32-wroom-32 hifive1b native samr21-xpro"
154154

155+
- name: laze test
156+
run: |
157+
docker run --rm -t ${{ env.DOCKER_REGISTRY }}/riotbuild:latest \
158+
laze --version
159+
155160
- name: Run static tests
156161
run: |
157162
docker run --rm -t -v $(pwd)/RIOT:/data/riotbuild \

riotbuild/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ RUN \
361361
echo 'Cleaning up root-owned crates.io cache' >&2 && \
362362
rm -rf /opt/rustup/.cargo/{git,registry,.package-cache}
363363

364+
# get laze binary
365+
COPY --from=kaspar030/laze:0.1.20-jammy /laze /usr/bin/laze
366+
364367
# get Dockerfile version from build args
365368
ARG RIOTBUILD_VERSION=unknown
366369
ENV RIOTBUILD_VERSION $RIOTBUILD_VERSION

0 commit comments

Comments
 (0)