Test for failure to deal with ogre by attacking him
[open-adventure.git] / .gitlab-ci.yml
index 1dcb6c1867340ff7762e95a3c8a358093f28b64a..fdf2bb726fb1266033cc651977fe8df5deaac43e 100644 (file)
@@ -6,16 +6,18 @@ stages:
   - deploy
 
 # build advent itself
-binary:
+binary:debug:
   stage: build
   before_script:
     - apk update
-    - apk add make gcc musl-dev
-  script: 
-    - make advent
+    - apk add make gcc musl-dev python3 libedit-dev
+    - pip3 install PyYAML
+  script:
+    - make debug
   artifacts:
     paths:
       - advent
+      - cheat
       - "*.gcda"
       - "*.gcno"
   # cache outputs to reduce the build time
@@ -23,13 +25,30 @@ binary:
     paths:
       - "*.o"
 
+binary:release:
+  stage: build
+  before_script:
+    - apk update
+    - apk add make gcc musl-dev python3 libedit-dev
+    - pip3 install PyYAML
+  script:
+    - make advent cheat
+  artifacts:
+    paths:
+      - advent
+      - cheat
+  # cache outputs to reduce the build time
+  cache:
+    paths:
+      - "*.o"
+
 manpage:
   stage: build
   before_script:
     - apk update
     - apk add make asciidoc
   script:
-    - make .asc.6
+    - make advent.6
   artifacts:
     paths:
       - advent.6
@@ -40,34 +59,63 @@ html:
     - apk update
     - apk add make asciidoc libxslt
   script:
-    - make .asc.html
+    - make html
   artifacts:
     paths:
-      - advent.html
+      - "*.html"
+
+dist:
+  stage: build
+  before_script:
+    - apk update
+    - apk add make asciidoc
+  script:
+    - export VERS=${CI_COMMIT_REF_NAME}
+    - make dist -e
+  artifacts:
+    paths:
+      - "*.tar.gz"
 
 # run tests using the binary built before
-test:
+test:debug:
   stage: test
   before_script:
     - apk update
-    - apk add make gcc
+    - apk add make gcc python3 libedit-dev
+    - pip3 install PyYAML
     - apk add lcov --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted
   script:
     - cd tests
     - make
+    - make coverage
     - 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
+    - apk add make libedit
+  script:
+    - cd tests
+    - make
+    - cd ..
+  dependencies:
+    - binary:release
 
 pages:
   stage: deploy
   script:
+    - mkdir public
     - mv coverage public
   artifacts:
     paths:
       - public
   only:
     - master
+  dependencies:
+    - test:debug