mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-23 10:36:42 +01:00
4c5e9b478e
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.
23 lines
317 B
YAML
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
|