From 7a293e7a04e7847de8729799aaaff4fe7fe2d9a1 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Sun, 15 Sep 2019 12:43:17 +0200 Subject: [PATCH] ci: Add archlinux:latest run with gcc --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index da013438d..ad5e55d04 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -121,6 +121,19 @@ ubuntu-lts-18-gcc-x86_64: - make -j4 check VERBOSE=1 allow_failure: true +archlinux-gcc-x86_64: + stage: build + image: archlinux:latest + before_script: + - pacman -Syu --noconfirm automake autoconf-archive libtool bison gettext dbus flex git glib2 graphviz gobject-introspection gcc make vala + script: + - git fetch --tags + - ./autogen.sh + - make -j4 + - make -j4 bootstrap + - make -j4 check VERBOSE=1 + allow_failure: true + pages: stage: deploy only: -- 2.47.2