libbsd/.gitlab-ci.yml
Guillem Jover 4c5e9b478e 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.
2018-05-31 03:42:33 +02:00

23 lines
317 B
YAML

image: debian:stretch
before_script:
- apt update -qq
- apt install --no-install-recommends -y 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