diff options
author | Ondrej Holy <oholy@redhat.com> | 2021-10-15 16:04:13 +0200 |
---|---|---|
committer | Ondrej Holy <oholy@redhat.com> | 2021-10-15 16:18:08 +0200 |
commit | db5741f2475a50d7f274984693d4f8aba0e7a8f8 (patch) | |
tree | dcc9fc20d7b4f931c63d28d9d2944462113d2310 /.gitlab-ci | |
parent | d342a4743ea019e1b31a6865f4d4f680e7b8db3c (diff) | |
download | gvfs-db5741f2475a50d7f274984693d4f8aba0e7a8f8.tar.gz |
ci: Add glib-networking master to Dockerfile
The DAVS test cases currently fail among others because of too old
glib-networking. Let's include also glib-networking to Dockerfile.
Diffstat (limited to '.gitlab-ci')
-rw-r--r-- | .gitlab-ci/Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile index d398d340..3f06d290 100644 --- a/.gitlab-ci/Dockerfile +++ b/.gitlab-ci/Dockerfile @@ -14,6 +14,16 @@ RUN dnf builddep --nogpg -y glib \ && cd .. \ && rm -rf glib +RUN dnf builddep --nogpg -y glib-networking \ + && dnf clean all \ + && git clone --depth 1 https://gitlab.gnome.org/GNOME/glib-networking.git \ + && cd glib-networking \ + && meson . _build --prefix=/usr \ + && ninja -C _build \ + && ninja -C _build install \ + && cd .. \ + && rm -rf glib-networking + RUN dnf builddep --nogpg -y libsoup \ && dnf install -y --nogpg libnghttp2-devel \ && dnf clean all \ |