Skip to content

Commit

Permalink
[TASK] Add TYPO3 v13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ayacoo committed Jul 14, 2024
1 parent d936834 commit abdca62
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Build/Scripts/runTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,15 @@ else
fi
TEST_SUITE=""
DBMS="mariadb"
PHP_VERSION="8.1"
PHP_VERSION="8.2"
TYPO3_VERSION="12"
PHP_XDEBUG_ON=0
PHP_XDEBUG_PORT=9003
EXTRA_TEST_OPTIONS=""
SCRIPT_VERBOSE=0
CGLCHECK_DRY_RUN=""
DATABASE_DRIVER=""
MARIADB_VERSION="10.2"
MARIADB_VERSION="10.4"
MYSQL_VERSION="5.5"
POSTGRES_VERSION="10"
USED_XDEBUG_MODES="debug,develop"
Expand Down Expand Up @@ -253,7 +253,7 @@ while getopts ":s:a:d:i:j:k:p:t:e:xy:z:nhuv" OPT; do
;;
i)
MARIADB_VERSION=${OPTARG}
if ! [[ ${MARIADB_VERSION} =~ ^(10.2|10.3|10.4|10.5|10.6|10.7|10.8|10.9|10.10|10.11)$ ]]; then
if ! [[ ${MARIADB_VERSION} =~ ^(10.4|10.5|10.6|10.7|10.8|10.9|10.10|10.11)$ ]]; then
INVALID_OPTIONS+=("${OPTARG}")
fi
;;
Expand All @@ -277,7 +277,7 @@ while getopts ":s:a:d:i:j:k:p:t:e:xy:z:nhuv" OPT; do
;;
t)
TYPO3_VERSION=${OPTARG}
if ! [[ ${TYPO3_VERSION} =~ ^(11|12)$ ]]; then
if ! [[ ${TYPO3_VERSION} =~ ^(12|13)$ ]]; then
INVALID_OPTIONS+=("p ${OPTARG}")
fi
;;
Expand Down

0 comments on commit abdca62

Please sign in to comment.