Hash :
005b5090
Author :
Date :
2018-05-31T01:45:28
build: Add a gitlab CI configuration file
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