From: NHOrus Date: Sun, 16 Jul 2017 04:43:56 +0000 (+0300) Subject: Use OpenSUSE in CI pipeline, instead X-Git-Tag: 1.3~56 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=a680514d5f86d02df81f0735d46908c3cfcb392f Use OpenSUSE in CI pipeline, instead --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1c5a83e..984111d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: fedora +image: opensuse:tumbleweed stages: - build @@ -9,7 +9,7 @@ stages: binary:debug: stage: build before_script: - - dnf install make gcc libedit-devel libasan libubsan python2 PyYAML lcov -y + - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov script: - make debug artifacts: @@ -24,7 +24,7 @@ binary:debug: binary:release: stage: build before_script: - - dnf install make gcc libedit-devel python2 PyYAML -y + - zypper install -y make gcc libedit-devel python python2-PyYAML script: - make advent cheat artifacts: @@ -38,7 +38,7 @@ binary:release: manpage: stage: build before_script: - - dnf install make asciidoc -y + - zypper install -y make asciidoc script: - make advent.6 artifacts: @@ -48,7 +48,7 @@ manpage: html: stage: build before_script: - - dnf install make asciidoc libxslt -y + - zypper install -y make asciidoc libxslt script: - make html artifacts: @@ -58,7 +58,7 @@ html: dist: stage: build before_script: - - dnf install make asciidoc -y + - zypper install -y make asciidoc tar script: - export VERS=${CI_COMMIT_REF_NAME} - make dist -e @@ -70,7 +70,7 @@ dist: test:debug: stage: test before_script: - - dnf install make gcc libedit-devel libasan libubsan python2 PyYAML lcov -y + - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov script: - make debug - make check @@ -86,7 +86,7 @@ test:debug: test:release: stage: test before_script: - - dnf install make libedit -y + - zypper install -y make libedit script: - cd tests - make