From fc90293aaf6d8ef8fa1cd6152f6237c0bdfea4a7 Mon Sep 17 00:00:00 2001 From: gggeek Date: Fri, 27 May 2022 10:45:45 +0000 Subject: [PATCH] make sure unzip is available for composer in the test vm; mention support of ubuntu jammy for it --- tests/ci/setup/install_packages.sh | 2 +- tests/ci/vm.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ci/setup/install_packages.sh b/tests/ci/setup/install_packages.sh index b22f3985..5ebcac00 100755 --- a/tests/ci/setup/install_packages.sh +++ b/tests/ci/setup/install_packages.sh @@ -5,4 +5,4 @@ set -e DEBIAN_FRONTEND=noninteractive apt-get install -y \ - lsb-release sudo wget + lsb-release sudo unzip wget diff --git a/tests/ci/vm.sh b/tests/ci/vm.sh index 1cef9163..4f72208b 100755 --- a/tests/ci/vm.sh +++ b/tests/ci/vm.sh @@ -8,7 +8,7 @@ ACTION="${1}" # Valid values: 'default', 5.6, 7.0 .. 7.4, 8.0 .. 8.1 export PHP_VERSION=${PHP_VERSION:-default} -# Valid values: precise (12), trusty (14), xenial (16), bionic (18), focal (20) +# Valid values: precise (12), trusty (14), xenial (16), bionic (18), focal (20), jammy (22) export UBUNTU_VERSION=${UBUNTU_VERSION:-bionic} CONTAINER_USER=docker @@ -42,7 +42,7 @@ Options: Environment variables: to be set before the 'build' action PHP_VERSION default value: 'default', ie. the stock php version from the Ubuntu version in use. Other possible values: 5.6, 7.0 .. 8.1 - UBUNTU_VERSION default value: bionic. Other possible values: xenial, focal + UBUNTU_VERSION default value: bionic. Other possible values: xenial, focal, jammy " } -- 2.47.0