CI: update docker image to fedora 30
authorChristoph Reiter <creiter@src.gnome.org>
Tue, 30 Apr 2019 13:15:47 +0000 (15:15 +0200)
committerChristoph Reiter <creiter@src.gnome.org>
Fri, 10 May 2019 13:48:33 +0000 (15:48 +0200)
So we don't have to build glib as a subproject.

.gitlab-ci.yml
.gitlab-ci/Dockerfile
.gitlab-ci/run-docker.sh

index cbd9e09728d632d0cce1bfb44f3915f5ebe5dff0..5a177266968c37e977accb38f576ee4352e7d99d 100644 (file)
@@ -13,7 +13,7 @@ stages:
     - subprojects/pango/
 
 fedora-x86_64:
-  image: registry.gitlab.gnome.org/gnome/gtk/master:v5
+  image: registry.gitlab.gnome.org/gnome/gtk/master:v6
   stage: build
   script:
     - bash -x ./.gitlab-ci/test-docker.sh
@@ -101,7 +101,7 @@ flatpak-master:icon-browser:
   <<: *flatpak-master
 
 pages:
-  image: registry.gitlab.gnome.org/gnome/gtk/master:v4
+  image: registry.gitlab.gnome.org/gnome/gtk/master:v6
   stage: deploy 
   script:
     - meson -Ddocumentation=true _build .
index 57b1983fdad84ab3e0708e9961cd197bdf0386ad..a9c011d45640d7daba98a8cfcc73e423a013dbb2 100644 (file)
@@ -1,4 +1,4 @@
-FROM fedora:29
+FROM fedora:30
 
 RUN dnf -y install \
     hicolor-icon-theme \
@@ -11,6 +11,7 @@ RUN dnf -y install \
     ccache \
     colord-devel \
     cups-devel \
+    dbus-daemon \
     dejavu-sans-mono-fonts \
     desktop-file-utils \
     elfutils-libelf-devel \
@@ -59,6 +60,7 @@ RUN dnf -y install \
     pango-devel \
     pcre-devel \
     python3 \
+    python3-jinja2 \
     python3-pip \
     python3-wheel \
     redhat-rpm-config \
@@ -71,9 +73,7 @@ RUN dnf -y install \
     xorg-x11-server-Xvfb \
  && dnf clean all
 
-RUN pip3 install meson==0.50.0
-
-RUN pip3 install jinja2
+RUN pip3 install meson==0.50.1
 
 ARG HOST_USER_ID=5555
 ENV HOST_USER_ID ${HOST_USER_ID}
index bcc8d7d076d1bf5c12e3b34615bfb28b079ca30a..b0857777eed5a781a4248cf4a1fc434dcdd495ec 100755 (executable)
@@ -2,7 +2,7 @@
 
 set -e
 
-TAG="registry.gitlab.gnome.org/gnome/gtk/master:v4"
+TAG="registry.gitlab.gnome.org/gnome/gtk/master:v6"
 
 sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
     --file "Dockerfile" .