Skip to content

Commit 0034b5d

Browse files
Fix sdl3 build
1 parent edd4777 commit 0034b5d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
# Remember if you commit this, newly built images will replace those tags.
1111
# Prefer incrementing the version to unused one
12-
tag: [11-mingw32, 11-jammy, 11-jammy32, 11-noble, 11-noble32, 11-noblevcpkg]
12+
tag: [11-mingw32, 11-noble, 11-noble32, 11-noblevcpkg]
1313
env:
1414
dockertag: ${{ matrix.tag }}
1515
REGISTRY: ghcr.io

11/noble/Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,16 @@ RUN apt-get update \
1616
libtbb-dev \
1717
libopenal-dev \
1818
libpng-dev \
19-
libsdl3-dev \
2019
ninja-build \
2120
pkg-config \
2221
&& update-ca-certificates \
2322
&& rm -rf /var/lib/apt/lists/*
23+
RUN git clone --depth=1 https://github.com/libsdl-org/SDL.git \
24+
&& cd SDL \
25+
&& git checkout a962f40bbba175e9716557a25d5d7965f134a3d3 \
26+
&& mkdir build \
27+
&& cd build \
28+
&& cmake .. \
29+
&& cmake --build . \
30+
&& cmake --install .
31+

0 commit comments

Comments
 (0)