add a simple .gitlab-ci.yml file

see https://framagit.org/miniupnp/miniupnp
This commit is contained in:
Thomas Bernard 2018-07-15 13:58:47 +02:00
parent 9b23bdf6de
commit 075064806b

15
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,15 @@
before_script:
- apt-get update -qq && apt-get install -y -qq iptables-dev libevent-dev libnfnetlink-dev uuid-dev
stages:
- build
job_miniupnpd:
stage: build
script:
- "cd miniupnpd && make -j3 -f Makefile.linux && make -f Makefile.linux check"
job_miniupnpc:
stage: build
script:
- "cd miniupnpc && make -j3 && make check"