libbsd: Branch 'master'
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Thu May 31 01:43:25 UTC 2018
.gitlab-ci.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 4c5e9b478e32a7140535df475b6510af8afbeec8
Author: Guillem Jover <guillem at hadrons.org>
Date: Thu May 31 03:34:07 2018 +0200
build: Fix gitlab CI configuration
Run «apt install» in non-interactive mode, and do not install
Recommends. Replace build-essential, which is rather fat, with gcc
and make. Execute autogen instead of autoreconf directly.
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 03afa11..fe0b289 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ image: debian:stretch
before_script:
- apt update -qq
- - apt install build-essential autoconf automake libtool
+ - apt install --no-install-recommends -y gcc make autoconf automake libtool
stages:
- autogen
@@ -11,7 +11,7 @@ stages:
autogen:
stage: autogen
- script: autoreconf -f -i && ./configure
+ script: ./autogen && ./configure
build:
stage: build
More information about the libbsd
mailing list