Test for failure to deal with ogre by attacking him
[open-adventure.git] / .gitlab-ci.yml
index 935fa3f0a2bd92249919f1bda67894233b6b1d44..fdf2bb726fb1266033cc651977fe8df5deaac43e 100644 (file)
@@ -10,12 +10,14 @@ binary:debug:
   stage: build
   before_script:
     - apk update
-    - apk add make gcc musl-dev
-  script: 
+    - 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
@@ -27,12 +29,14 @@ binary:release:
   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 advent cheat
   artifacts:
     paths:
       - advent
+      - cheat
   # cache outputs to reduce the build time
   cache:
     paths:
@@ -44,7 +48,7 @@ manpage:
     - apk update
     - apk add make asciidoc
   script:
-    - make .adoc.6
+    - make advent.6
   artifacts:
     paths:
       - advent.6
@@ -60,19 +64,31 @@ html:
     paths:
       - "*.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: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
@@ -83,7 +99,7 @@ test:release:
   stage: test
   before_script:
     - apk update
-    - apk add make
+    - apk add make libedit
   script:
     - cd tests
     - make
@@ -96,12 +112,10 @@ pages:
   script:
     - mkdir public
     - mv coverage public
-    - "mv *.html public"
   artifacts:
     paths:
       - public
   only:
     - master
   dependencies:
-    - html
     - test:debug