Add CI testing, run compile and test on push
parent
800488a1ef
commit
b34b32adf6
|
@ -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
|
Loading…
Reference in New Issue