Add Debian Bullseye to CI (#1842)

Stretch is supported until June 2022:

https://wiki.debian.org/LTS
This commit is contained in:
Andrew Gaul 2022-01-09 12:11:00 +09:00 committed by GitHub
parent fc7543fa25
commit dd11de3a50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -59,6 +59,7 @@ jobs:
- ubuntu:21.10
- ubuntu:20.04
- ubuntu:18.04
- debian:bullseye
- debian:buster
- debian:stretch
- centos:centos8

View File

@ -86,6 +86,13 @@ elif [ "${CONTAINER_FULLNAME}" = "ubuntu:16.04" ]; then
INSTALL_PACKAGES="autoconf autotools-dev default-jre-headless fuse libfuse-dev libcurl4-openssl-dev libxml2-dev locales-all mime-support libtool pkg-config libssl-dev attr curl python3-pip"
INSTALL_CPPCHECK_OPTIONS=""
elif [ "${CONTAINER_FULLNAME}" = "debian:bullseye" ]; then
PACKAGE_MANAGER_BIN="apt-get"
PACKAGE_UPDATE_OPTIONS="update -y -qq"
INSTALL_PACKAGES="autoconf autotools-dev default-jre-headless fuse libfuse-dev libcurl4-openssl-dev libxml2-dev locales-all mime-support libtool pkg-config libssl-dev attr curl python2 procps python3-pip"
INSTALL_CPPCHECK_OPTIONS=""
elif [ "${CONTAINER_FULLNAME}" = "debian:buster" ]; then
PACKAGE_MANAGER_BIN="apt-get"
PACKAGE_UPDATE_OPTIONS="update -y -qq"