mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-01-02 20:50:17 +00:00
Add Ubuntu 24.10 to CI (#2575)
This commit is contained in:
parent
561ce1e206
commit
08a5d35f34
.github/workflows
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@ -49,6 +49,7 @@ jobs:
|
||||
#
|
||||
matrix:
|
||||
container:
|
||||
- ubuntu:24.10
|
||||
- ubuntu:24.04
|
||||
- ubuntu:22.04
|
||||
- ubuntu:20.04
|
||||
|
11
.github/workflows/linux-ci-helper.sh
vendored
11
.github/workflows/linux-ci-helper.sh
vendored
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user