From: Guillem Jover Date: Thu, 31 May 2018 01:59:49 +0000 (+0200) Subject: build: Simplify gitlab CI configuration X-Git-Tag: 0.10.0~42 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=8e834cd0686794ce7f70cb915ddd754e1d1ce726;p=thirdparty%2Flibbsd.git build: Simplify gitlab CI configuration Merge all stages so that we do not need to pass artifacts around. Quiesce «apt install». --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d63c2b5..3d6dbb6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,22 +1,9 @@ image: debian:stretch -before_script: - - apt update -qq - - apt install --no-install-recommends -y git gcc make autoconf automake libtool - -stages: - - autogen - - build - - test - -autogen: - stage: autogen - script: ./autogen && ./configure - -build: - stage: build - script: make - test: - stage: test - script: make check + before_script: + - apt update -qq + - apt install -qq -y --no-install-recommends git gcc make autoconf automake libtool + script: + - ./autogen && ./configure + - make check