Skip to content

Commit

Permalink
Add Ubuntu 24.10 to CI (s3fs-fuse#2575)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaul authored Oct 28, 2024
1 parent 561ce1e commit 08a5d35
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
#
matrix:
container:
- ubuntu:24.10
- ubuntu:24.04
- ubuntu:22.04
- ubuntu:20.04
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/linux-ci-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,16 @@ PACKAGE_INSTALL_ADDITIONAL_OPTIONS=""
SHELLCHECK_DIRECT_INSTALL=0
AWSCLI_DIRECT_INSTALL=1

if [ "${CONTAINER_FULLNAME}" = "ubuntu:24.04" ]; then
if [ "${CONTAINER_FULLNAME}" = "ubuntu:24.10" ]; then
PACKAGE_MANAGER_BIN="apt-get"
PACKAGE_UPDATE_OPTIONS="update -y -qq"
PACKAGE_INSTALL_OPTIONS="install -y"

INSTALL_PACKAGES="autoconf autotools-dev clang-tidy openjdk-21-jre-headless fuse jq libfuse-dev libcurl4-openssl-dev libxml2-dev locales-all mailcap libtool pkg-config libssl-dev attr curl python3-pip unzip"
INSTALL_CHECKER_PKGS="cppcheck shellcheck"
INSTALL_CHECKER_PKG_OPTIONS=""

elif [ "${CONTAINER_FULLNAME}" = "ubuntu:24.04" ]; then
PACKAGE_MANAGER_BIN="apt-get"
PACKAGE_UPDATE_OPTIONS="update -y -qq"
PACKAGE_INSTALL_OPTIONS="install -y"
Expand Down

0 comments on commit 08a5d35

Please sign in to comment.