Attempt to unbreak pipeline.
[open-adventure.git] / .gitlab-ci.yml
index 45531263d9cdfcb3988661d9d6e31b5fa160a9a7..291b943a7e4c1ab5359fd7d33bcbd5e18ed796fa 100644 (file)
@@ -1,9 +1,5 @@
 image: alpine
 
-variables:
-  GIT_SUBMODULE_STRATEGY: "recursive"
-  GIT_SSL_NO_VERIFY: "true"
-
 stages:
   - build
   - test
@@ -14,7 +10,7 @@ binary:debug:
   stage: build
   before_script:
     - apk update
-    - apk add make gcc musl-dev python3
+    - apk add make gcc musl-dev python3 libedit-dev
     - pip3 install PyYAML
   script: 
     - make debug
@@ -33,7 +29,7 @@ binary:release:
   stage: build
   before_script:
     - apk update
-    - apk add make gcc musl-dev python3
+    - apk add make gcc musl-dev python3 libedit-dev
     - pip3 install PyYAML
   script: 
     - make advent cheat
@@ -90,9 +86,8 @@ test:debug:
   script:
     - cd tests
     - make
+    - make coverage
     - cd ..
-    - lcov -t "advent" -o advent.info -c -d .
-    - genhtml -o coverage advent.info
   artifacts:
     paths:
       - coverage