mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 01:16:17 +01:00
21fa4ea91b
Fedora 37 is out of support so, as per our policy, update the CI image to the oldest still-supported release, which is 39. Update the mingw CI image too, as it’s built on top of the Fedora one. Update the supported platforms documentation (and fix the Debian version listed there to match what’s currently in CI, which is up to date). Signed-off-by: Philip Withnall <pwithnall@gnome.org>
17 lines
282 B
Docker
17 lines
282 B
Docker
FROM registry.gitlab.gnome.org/gnome/glib/fedora:v27
|
|
|
|
USER root
|
|
|
|
RUN dnf -y install \
|
|
mingw64-gcc \
|
|
mingw64-gcc-c++ \
|
|
mingw64-gettext \
|
|
mingw64-libffi \
|
|
mingw64-zlib \
|
|
&& dnf clean all
|
|
|
|
WORKDIR /opt
|
|
COPY cross_file_mingw64.txt /opt
|
|
|
|
USER user
|
|
WORKDIR /home/user |