Bump Ubuntu CI to latest non-LTS version (#1794)

This commit is contained in:
Andrew Gaul 2021-10-28 22:10:20 +09:00 committed by GitHub
parent 40d2e0d1ad
commit 162ab14517
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -56,7 +56,7 @@ jobs:
#
matrix:
container:
- ubuntu:21.04
- ubuntu:21.10
- ubuntu:20.04
- ubuntu:18.04
- debian:buster

View File

@ -58,7 +58,7 @@ CONFIGURE_OPTIONS="CXXFLAGS='-std=c++11 -DS3FS_PTHREAD_ERRORCHECK=1' --prefix=/u
#-----------------------------------------------------------
# OS dependent variables
#-----------------------------------------------------------
if [ "${CONTAINER_FULLNAME}" = "ubuntu:21.04" ]; then
if [ "${CONTAINER_FULLNAME}" = "ubuntu:21.10" ]; then
PACKAGE_MANAGER_BIN="apt-get"
PACKAGE_UPDATE_OPTIONS="update -y -qq"
@ -149,6 +149,7 @@ elif [ "${CONTAINER_FULLNAME}" = "opensuse/leap:15" ]; then
INSTALL_JDK_PACKAGES="java-1_8_0-openjdk"
else
echo "No container configured for: ${CONTAINER_FULLNAME}"
exit 1
fi