From e2304125cbffce3f41aaab8f43015d0f8e202a98 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 7 Aug 2024 15:05:30 +0200 Subject: [PATCH] Fix openshift 4 tests Signed-off-by: Petr "Stone" Hracek --- Makefile | 2 +- test/test-lib-php.sh | 2 +- test/test_deploy_templates.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 45155c892..06b64b904 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Include common Makefile code. BASE_IMAGE_NAME = php -VERSIONS = 7.3 7.4 8.0 8.1 8.2 +VERSIONS = 7.3 7.4 8.0 8.1 8.2 8.3 OPENSHIFT_NAMESPACES = # HACK: Ensure that 'git pull' for old clones doesn't cause confusion. diff --git a/test/test-lib-php.sh b/test/test-lib-php.sh index 88c1296b4..f83f09c6e 100644 --- a/test/test-lib-php.sh +++ b/test/test-lib-php.sh @@ -36,7 +36,7 @@ function test_php_template() { BRANCH_TO_TEST="4.X" check_msg="Welcome to CakePHP 4.5" # Version 8.1 is supported only for RHEL9 - elif [ "${VERSION}" == "8.1" ] || [ "${VERSION}" == "8.2" ]; then + elif [ "${VERSION}" == "8.1" ] || [ "${VERSION}" == "8.2" ] || [ "${VERSION}" == "8.3" ]; then supported_use_case="True" BRANCH_TO_TEST="5.X" check_msg="Welcome to CakePHP 5" diff --git a/test/test_deploy_templates.py b/test/test_deploy_templates.py index 822be187e..09dc32c79 100644 --- a/test/test_deploy_templates.py +++ b/test/test_deploy_templates.py @@ -17,7 +17,7 @@ if VERSION == "7.4" or VERSION == "8.0": branch_to_test = "4.X" check_msg = "Welcome to CakePHP 4.5" -elif VERSION == "8.1" or VERSION == "8.2": +elif VERSION == "8.1" or VERSION == "8.2" or VERSION == "8.3": branch_to_test = "5.X" check_msg = "Welcome to CakePHP 5" else: