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