diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 687e2ea..ad27dca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,6 +52,7 @@ jobs: - ubuntu:25.04 - ubuntu:24.04 - ubuntu:22.04 + - debian:trixie - debian:bookworm - debian:bullseye - rockylinux/rockylinux:10 diff --git a/.github/workflows/linux-ci-helper.sh b/.github/workflows/linux-ci-helper.sh index 6120cd8..719b069 100755 --- a/.github/workflows/linux-ci-helper.sh +++ b/.github/workflows/linux-ci-helper.sh @@ -102,6 +102,13 @@ elif [ "${CONTAINER_FULLNAME}" = "ubuntu:22.04" ]; then INSTALL_PACKAGES="autoconf autotools-dev openjdk-21-jre-headless fuse jq libfuse-dev libcurl4-openssl-dev libxml2-dev locales-all mime-support libtool pkg-config libssl-dev attr curl python3-pip unzip" +elif [ "${CONTAINER_FULLNAME}" = "debian:trixie" ]; then + PACKAGE_MANAGER_BIN="apt-get" + PACKAGE_UPDATE_OPTIONS="update -y -qq" + PACKAGE_INSTALL_OPTIONS="install -y" + + INSTALL_PACKAGES="autoconf autotools-dev openjdk-21-jre-headless fuse jq libfuse-dev libcurl4-openssl-dev libxml2-dev locales-all mailcap libtool pkg-config libssl-dev attr curl procps python3-pip unzip" + elif [ "${CONTAINER_FULLNAME}" = "debian:bookworm" ]; then PACKAGE_MANAGER_BIN="apt-get" PACKAGE_UPDATE_OPTIONS="update -y -qq"