CI: Disable Debian buster test.

The stretch package of identiconpp can not be installed on buster.
This commit is contained in:
tastytea 2020-10-24 11:16:57 +02:00
parent 05c6276d43
commit 846e85aecf
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 26 additions and 26 deletions

View File

@ -44,32 +44,32 @@ steps:
# - name: debian-package-cache
# path: /var/cache/apt/archives
- name: GCC 8 / clang 7
image: debian:buster-slim
pull: always
environment:
CXX: g++-8
CXXFLAGS: -pipe -O2
DEBIAN_FRONTEND: noninteractive
LANG: C.utf8
commands:
- rm /etc/apt/apt.conf.d/docker-clean
- apt-get update -q
- apt-get install -qq build-essential clang pkg-config cmake
- apt-get install -qq libcrypto++-dev libmagick++-dev libxdg-basedir-dev
- dpkg -i identiconpp_stretch.deb
- rm -rf build && mkdir -p build && cd build
- cmake ..
- cmake --build .
- make install
- cd ../
- rm -rf build && mkdir -p build && cd build
- CXX="clang++" cmake ..
- cmake --build .
- make install
volumes:
- name: debian-package-cache
path: /var/cache/apt/archives
# - name: GCC 8 / clang 7
# image: debian:buster-slim
# pull: always
# environment:
# CXX: g++-8
# CXXFLAGS: -pipe -O2
# DEBIAN_FRONTEND: noninteractive
# LANG: C.utf8
# commands:
# - rm /etc/apt/apt.conf.d/docker-clean
# - apt-get update -q
# - apt-get install -qq build-essential clang pkg-config cmake
# - apt-get install -qq libcrypto++-dev libmagick++-dev libxdg-basedir-dev
# - dpkg -i identiconpp_buster.deb
# - rm -rf build && mkdir -p build && cd build
# - cmake ..
# - cmake --build .
# - make install
# - cd ../
# - rm -rf build && mkdir -p build && cd build
# - CXX="clang++" cmake ..
# - cmake --build .
# - make install
# volumes:
# - name: debian-package-cache
# path: /var/cache/apt/archives
- name: notification
image: drillster/drone-email