Skip to content

Commit be25a07

Browse files
committed
test-all.sh: Exclude PHP 7.0.x
We are dropping PHP 7.0 support, so filter PHP 7.0.x versions out of the list of available phpenv environments when running test-all.sh.
1 parent 334613b commit be25a07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev-tools/test-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
rm .rbenv-version 2>/dev/null
44

5-
VERSIONS=$(phpenv versions --bare | grep -E '^(7|8|master)')
5+
VERSIONS=$(phpenv versions --bare | grep -E '^(7.[^0]|8|master)' | sort -V)
66
SCRIPT_DIR=$(dirname $0)
77

88
for v in $VERSIONS; do

0 commit comments

Comments
 (0)