mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 09:26:17 +01:00
78c94d81ed
In most CI builds. (Not all of them, though, so we can also test the build works with it disabled.) This is needed for the upcoming libgirepository tests, as they need some GIR files to test against. Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3155
17 lines
282 B
Docker
17 lines
282 B
Docker
FROM registry.gitlab.gnome.org/gnome/glib/fedora:v25
|
|
|
|
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 |