Commit 8e834cd0686794ce7f70cb915ddd754e1d1ce726

Guillem Jover 2018-05-31T03:59:49

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