libbsd/.gitlab-ci.yml
2018-05-31 03:46:14 +02:00

23 lines
321 B
YAML

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