mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 16:56:13 +01:00
Compare commits
No commits in common. "497dde41790283cf761951a8d5f43618d152f096" and "99a2b7f17687919baec8da2a61fd93360962b073" have entirely different histories.
497dde4179
...
99a2b7f176
2 changed files with 3 additions and 9 deletions
|
@ -223,14 +223,13 @@ Options:
|
||||||
- 11.5: use TYPO3 v11 with typo3/cms-composer-installers ^3
|
- 11.5: use TYPO3 v11 with typo3/cms-composer-installers ^3
|
||||||
- 12.4: (default) use TYPO3 v12 with typo3/cms-composer-installers ^5
|
- 12.4: (default) use TYPO3 v12 with typo3/cms-composer-installers ^5
|
||||||
|
|
||||||
-p <7.4|8.0|8.1|8.2|8.3|8.4>
|
-p <7.4|8.0|8.1|8.2|8.3>
|
||||||
Specifies the PHP minor version to be used
|
Specifies the PHP minor version to be used
|
||||||
- 7.4: use PHP 7.4
|
- 7.4: use PHP 7.4
|
||||||
- 8.0: use PHP 8.0
|
- 8.0: use PHP 8.0
|
||||||
- 8.1: use PHP 8.1
|
- 8.1: use PHP 8.1
|
||||||
- 8.2: use PHP 8.2
|
- 8.2: use PHP 8.2
|
||||||
- 8.3: (default) use PHP 8.3
|
- 8.3: (default) use PHP 8.3
|
||||||
- 8.4: use PHP 8.4
|
|
||||||
|
|
||||||
-e "<phpunit options>"
|
-e "<phpunit options>"
|
||||||
Only with -s functional|functionalDeprecated|unit|unitDeprecated|unitRandom
|
Only with -s functional|functionalDeprecated|unit|unitDeprecated|unitRandom
|
||||||
|
@ -361,7 +360,7 @@ while getopts "a:b:s:d:i:p:e:t:xy:o:nhu" OPT; do
|
||||||
;;
|
;;
|
||||||
p)
|
p)
|
||||||
PHP_VERSION=${OPTARG}
|
PHP_VERSION=${OPTARG}
|
||||||
if ! [[ ${PHP_VERSION} =~ ^(7.4|8.0|8.1|8.2|8.3|8.4)$ ]]; then
|
if ! [[ ${PHP_VERSION} =~ ^(7.4|8.0|8.1|8.2|8.3)$ ]]; then
|
||||||
INVALID_OPTIONS+=("-p ${OPTARG}")
|
INVALID_OPTIONS+=("-p ${OPTARG}")
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
@ -658,11 +657,6 @@ case ${TEST_SUITE} in
|
||||||
echo "Invalid -s option argument ${TEST_SUITE}" >&2
|
echo "Invalid -s option argument ${TEST_SUITE}" >&2
|
||||||
echo >&2
|
echo >&2
|
||||||
echo "${HELP}" >&2
|
echo "${HELP}" >&2
|
||||||
if [ ${CONTAINER_BIN} = "docker" ]; then
|
|
||||||
${CONTAINER_BIN} network rm ${NETWORK} >/dev/null
|
|
||||||
else
|
|
||||||
${CONTAINER_BIN} network rm -f ${NETWORK} >/dev/null
|
|
||||||
fi
|
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
"ci:php:lint": "parallel-lint .*.php *.php Classes Configuration Tests",
|
"ci:php:lint": "parallel-lint .*.php *.php Classes Configuration Tests",
|
||||||
"ci:php:mess": "phpmd Classes text Build/phpmd/phpmd.xml",
|
"ci:php:mess": "phpmd Classes text Build/phpmd/phpmd.xml",
|
||||||
"ci:php:sniff": "phpcs Classes Configuration Tests",
|
"ci:php:sniff": "phpcs Classes Configuration Tests",
|
||||||
"ci:php:stan": "phpstan --no-progress -v",
|
"ci:php:stan": "phpstan --no-progress",
|
||||||
"ci:static": [
|
"ci:static": [
|
||||||
"@ci:composer:normalize",
|
"@ci:composer:normalize",
|
||||||
"@ci:json:lint",
|
"@ci:json:lint",
|
||||||
|
|
Loading…
Reference in a new issue