14 lines
234 B
YAML
14 lines
234 B
YAML
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
|