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
2 changed files with 8 additions and 0 deletions

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"