stc/.gitlab-ci.yml

15 lines
277 B
YAML

debian:
image: debian:stable-slim
before_script:
- apt-get -qq update
- apt-get -qq install make clang
script:
- make
alpine:
image: alpine:latest
before_script:
- apk add make clang linux-headers
script:
- make