소스 검색

Run the unit tests with CI

Martijn Braam 5 달 전
부모
커밋
67b5c650e2
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      .gitlab-ci.yml

+ 10 - 0
.gitlab-ci.yml

@@ -30,6 +30,16 @@ lint:
   script:
     - bash ./configtest.sh
 
+tests:
+  stage: test
+  image: alpine:edge
+  before_script:
+    - apk add --no-cache build-base meson samurai scdoc libconfig-dev linux-headers
+  script:
+    - meson setup unittests --buildtype release --werror
+    - ninja -C unittests
+    - cd unittests && meson test --no-rebuild
+
 pages:
   stage: deploy
   image: alpine:edge