From 5a2d2ff1c3c2eecc30073eac34828cb245ead12d Mon Sep 17 00:00:00 2001 From: sfja Date: Mon, 23 Mar 2026 23:29:44 +0100 Subject: [PATCH] sfja/h5-mst-ci:1.1 --- .github/workflows/verify.yml | 5 ++--- ci-container/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 116af63..eb3514c 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -9,7 +9,7 @@ on: jobs: backend: runs-on: ubuntu-latest - container: sfja/h5-mst-ci:1.0 + container: sfja/h5-mst-ci:1.1 steps: - uses: actions/checkout@v6 - name: check @@ -24,10 +24,9 @@ jobs: game: runs-on: ubuntu-latest - container: sfja/h5-mst-ci:1.0 + container: sfja/h5-mst-ci:1.1 steps: - uses: actions/checkout@v6 - - run: sudo apt-get install libsdl3-dev - name: cache crates uses: actions/cache@v4 with: diff --git a/ci-container/Dockerfile b/ci-container/Dockerfile index fc6a6fa..f1a2eab 100644 --- a/ci-container/Dockerfile +++ b/ci-container/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:edge -RUN apk add --no-cache curl build-base clang22-extra-tools +RUN apk add --no-cache curl build-base clang22-extra-tools sdl3-dev RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}"