Update INSTALL.adoc to provide extra help for those getting an error regarding yaml...
[open-adventure.git] / .gitlab-ci.yml
index 3644753c5d709b2e1bd3ae77d8fa0b2e1fd331f1..701db5bb0b87ecfd35d5730e941f1f453596ac97 100644 (file)
@@ -1,4 +1,4 @@
-image: opensuse:tumbleweed
+image: opensuse/tumbleweed
 
 stages:
   - build
@@ -9,7 +9,7 @@ stages:
 binary:debug:
   stage: build
   before_script:
-    - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov 
+    - zypper install -y make gcc libedit-devel libasan5 libubsan1 python python2-PyYAML lcov
   script:
     - make debug
   artifacts:
@@ -57,7 +57,7 @@ html:
 dist:
   stage: build
   before_script:
-    - zypper install -y make asciidoc tar
+    - zypper install -y make asciidoc tar gzip
   script:
     - export VERS=${CI_COMMIT_REF_NAME}
     - make dist -e
@@ -69,7 +69,7 @@ dist:
 test:debug:
   stage: test
   before_script:
-    - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov
+    - zypper install -y make gcc libedit-devel libasan5 libubsan1 python python2-PyYAML lcov
   script:
     - make coverage
   artifacts:
@@ -78,13 +78,6 @@ test:debug:
   dependencies:
     - binary:debug
 
-test:debug_clang:
-  stage: test
-  before_script:
-    - zypper install -y make clang libedit-devel python python2-PyYAML lcov
-  script:
-    - CC=clang make debug check
-
 test:release:
   stage: test
   before_script: