mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-07 09:41:01 +02:00
* Add nullable types * Removing deprecated E_STRICT constant from test suite. * Added PHP 8.4 RC1 as test image * PHP version bump in the README.md. * Added PHP 8.4 to CI * Add running tests for PHP 8.4
19 lines
679 B
Bash
Executable File
19 lines
679 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Runs tests for all supported PHP versions
|
|
# Usage examples:
|
|
# - ./run-tests-for-all-php-versions.sh --group 20221124
|
|
# - ./run-tests-for-all-php-versions.sh --exclude-group slow
|
|
|
|
COMPOSE_CMD="mutagen-compose"
|
|
|
|
$COMPOSE_CMD run --rm php71 ./run-tests.sh $@ && \
|
|
$COMPOSE_CMD run --rm php72 ./run-tests.sh $@ && \
|
|
$COMPOSE_CMD run --rm php73 ./run-tests.sh $@ && \
|
|
$COMPOSE_CMD run --rm php74 ./run-tests.sh $@ && \
|
|
$COMPOSE_CMD run --rm php80 ./run-tests.sh $@ && \
|
|
$COMPOSE_CMD run --rm php81 ./run-tests.sh $@ && \
|
|
$COMPOSE_CMD run --rm php82 ./run-tests.sh $@ && \
|
|
$COMPOSE_CMD run --rm php83 ./run-tests.sh $@ && \
|
|
$COMPOSE_CMD run --rm php84 ./run-tests.sh $@
|