mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-08 11:02:24 +01:00
23 lines
304 B
YAML
23 lines
304 B
YAML
image: debian:stretch
|
|
|
|
before_script:
|
|
- apt update -qq
|
|
- apt install build-essential autoconf automake libtool
|
|
|
|
stages:
|
|
- autogen
|
|
- build
|
|
- test
|
|
|
|
autogen:
|
|
stage: autogen
|
|
script: autoreconf -f -i && ./configure
|
|
|
|
build:
|
|
stage: build
|
|
script: make
|
|
|
|
test:
|
|
stage: test
|
|
script: make check
|