From d8b70e735dba46e786c6ceb09611d8a788f8aa2d Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Thu, 9 Jan 2020 16:47:56 +0100 Subject: [PATCH] ci: Fix CI Don't "allow_failure", install packages from the correct variable and add some missing dependencies. --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 09f30e8..6a7a743 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,14 +1,14 @@ image: fedora:rawhide variables: - DEPENDENCIES: make gcc gtk-doc pkgconfig(udev) pkgconfig(systemd) pkgconfig(gio-2.0) pkgconfig(gudev-1.0) systemd + DEPENDENCIES: gcc gtk-doc pkgconfig(udev) pkgconfig(systemd) pkgconfig(gio-2.0) pkgconfig(gudev-1.0) systemd gtk3-devel + make autoconf autoconf-archive automake libtool build_stable: - allow_failure: true before_script: - - dnf update -y --nogpgcheck && dnf install -y --nogpgcheck $DEPENDENCIES_STABLE + - dnf update -y --nogpgcheck && dnf install -y --nogpgcheck $DEPENDENCIES script: - - ./autogen.sh --disable-dependency-tracking + - ./autogen.sh --disable-dependency-tracking --enable-gtk-doc --enable-gtk-tests - make - make check - make install