summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: d1d402486612fca22a72102596ea952456540c3f (plain)
1
2
3
4
5
6
7
8
9
10
test-job:
  image: alpine:latest
  stage: test
  script:
    - apk add make gcc musl-dev kyua
    - make -j $(nproc) test
  tags:
    - docker-alpine
    - x86_64