libbsd: Branch 'master'
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Thu May 31 02:02:32 UTC 2018
.gitlab-ci.yml | 25 ++++++-------------------
1 file changed, 6 insertions(+), 19 deletions(-)
New commits:
commit 8e834cd0686794ce7f70cb915ddd754e1d1ce726
Author: Guillem Jover <guillem at hadrons.org>
Date: Thu May 31 03:59:49 2018 +0200
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
More information about the libbsd
mailing list