stc/.gitlab-ci.yml

14 lines
234 B
YAML
Raw Normal View History

2020-09-02 19:09:52 +02:00
debian:
image: debian:stable-slim
before_script:
- apt-get -qq install make clang
script:
- make
alpine:
image: alpine:latest
before_script:
- apk add make clang
script:
- make