Add CI testing, run compile and test on push

cute-signatures
Fredrik Gustafsson 2019-11-11 19:09:01 +01:00 committed by Natanael Copa
parent 800488a1ef
commit b34b32adf6
1 changed files with 13 additions and 0 deletions

13
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,13 @@
stages:
- test
image: alpine
test:
stage: test
script:
- apk update
- apk add make gcc git musl-dev openssl-dev linux-headers zlib-dev lua5.2-dev
- make -j$(nproc) check
tags:
- docker-alpine