From f6d90a51826b92161b64d714ec57030c82daacd4 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Sun, 10 Feb 2019 13:55:46 +0100 Subject: [PATCH] ci: Add ubuntu:18.04 run with gcc --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 47971ac84..da013438d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -103,6 +103,24 @@ ubuntu-clang-x86_64: - make -j4 bootstrap - make -j4 check VERBOSE=1 +ubuntu-lts-18-gcc-x86_64: + stage: build + image: ubuntu:18.04 + except: + - tags + variables: + DEBIAN_FRONTEND: noninteractive + before_script: + - apt update + - apt install -y automake autoconf-archive libtool bison dbus flex git libglib2.0-dev libgraphviz-dev libgirepository1.0-dev lcov xsltproc make valac + 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