Skip to content

Commit

Permalink
Fix openshift 4 tests
Browse files Browse the repository at this point in the history
Signed-off-by: Petr "Stone" Hracek <[email protected]>
  • Loading branch information
phracek committed Aug 8, 2024
1 parent 5b606c3 commit d73cce1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion test/test-lib-php.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion test/test_deploy_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d73cce1

Please sign in to comment.