build: Add a gitlab CI configuration file

This commit is contained in:
Guillem Jover 2018-05-31 01:45:28 +02:00
parent a8531ad051
commit 005b509061

22
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,22 @@
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