Reconfigure the CI pipeline to deploy more static HTML content.
[open-adventure.git] / .gitlab-ci.yml
index 13004d5f0bb7a24f76b44ccddbb7b25c1187d10a..935fa3f0a2bd92249919f1bda67894233b6b1d44 100644 (file)
@@ -3,9 +3,27 @@ image: alpine
 stages:
   - build
   - test
+  - deploy
 
 # build advent itself
-binary:
+binary:debug:
+  stage: build
+  before_script:
+    - apk update
+    - apk add make gcc musl-dev
+  script: 
+    - make debug
+  artifacts:
+    paths:
+      - advent
+      - "*.gcda"
+      - "*.gcno"
+  # cache outputs to reduce the build time
+  cache:
+    paths:
+      - "*.o"
+
+binary:release:
   stage: build
   before_script:
     - apk update
@@ -26,7 +44,7 @@ manpage:
     - apk update
     - apk add make asciidoc
   script:
-    - make .asc.6
+    - make .adoc.6
   artifacts:
     paths:
       - advent.6
@@ -37,13 +55,31 @@ html:
     - apk update
     - apk add make asciidoc libxslt
   script:
-    - make .asc.html
+    - make html
   artifacts:
     paths:
-      - advent.html
+      - "*.html"
 
 # run tests using the binary built before
-test:
+test:debug:
+  stage: test
+  before_script:
+    - apk update
+    - apk add make gcc
+    - apk add lcov --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted
+  script:
+    - cd tests
+    - make
+    - cd ..
+    - lcov -t "advent" -o advent.info -c -d .
+    - genhtml -o coverage advent.info
+  artifacts:
+    paths:
+      - coverage
+  dependencies:
+    - binary:debug
+
+test:release:
   stage: test
   before_script:
     - apk update
@@ -51,3 +87,21 @@ test:
   script:
     - cd tests
     - make
+    - cd ..
+  dependencies:
+    - binary:release
+
+pages:
+  stage: deploy
+  script:
+    - mkdir public
+    - mv coverage public
+    - "mv *.html public"
+  artifacts:
+    paths:
+      - public
+  only:
+    - master
+  dependencies:
+    - html
+    - test:debug