-image: fedora
+image: opensuse:tumbleweed
stages:
- build
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:
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:
manpage:
stage: build
before_script:
- - dnf install make asciidoc -y
+ - zypper install -y make asciidoc
script:
- make advent.6
artifacts:
html:
stage: build
before_script:
- - dnf install make asciidoc libxslt -y
+ - zypper install -y make asciidoc libxslt
script:
- make html
artifacts:
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
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
test:release:
stage: test
before_script:
- - dnf install make libedit -y
+ - zypper install -y make libedit
script:
- cd tests
- make