-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from OpenLoco/ci-update
Add new Dockerfiles for Ubuntu Jammy, Mantic, and Fedora 39 (MinGW)
- Loading branch information
Showing
4 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM ubuntu:22.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN dpkg --add-architecture i386 \ | ||
&& apt-get update \ | ||
&& apt-get -y upgrade \ | ||
&& apt-get install --no-install-recommends -y \ | ||
ca-certificates \ | ||
ccache \ | ||
clang \ | ||
cmake \ | ||
g++-multilib \ | ||
gcc-multilib \ | ||
git \ | ||
libgtest-dev:i386 \ | ||
libopenal-dev:i386 \ | ||
libpng-dev:i386 \ | ||
libsdl2-dev:i386 \ | ||
ninja-build \ | ||
pkg-config:i386 \ | ||
&& update-ca-certificates \ | ||
&& rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM ubuntu:23.10 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN dpkg --add-architecture i386 \ | ||
&& apt-get update \ | ||
&& apt-get -y upgrade \ | ||
&& apt-get install --no-install-recommends -y \ | ||
ca-certificates \ | ||
ccache \ | ||
clang \ | ||
cmake \ | ||
g++-multilib \ | ||
gcc-multilib \ | ||
git \ | ||
libgtest-dev:i386 \ | ||
libopenal-dev:i386 \ | ||
libpng-dev:i386 \ | ||
libsdl2-dev:i386 \ | ||
ninja-build \ | ||
pkg-config:i386 \ | ||
&& update-ca-certificates \ | ||
&& rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM fedora:39 | ||
RUN dnf update -y && \ | ||
dnf install -y mingw32-gcc-c++ mingw32-SDL2 mingw32-SDL2-static ccache cmake git ninja-build dnf-plugins-core mingw32-yaml-cpp mingw32-libpng mingw32-openal-soft && \ | ||
dnf clean all --enablerepo=\* |