Skip to content

Commit 0f49c1a

Browse files
committed
travis-ci: enable PHP 7.2 in testing
Previous changes enable support of phpunit-8 and eliminate its deprecation warnings. Now we ready to enable PHP 7.2 testing using the maximal phpunit version, which supports it: it is phpunit-8. The commit enables testing of PHP 7.2 in Travis CI and in the script for local testing (test.all.sh).
1 parent 5deede2 commit 0f49c1a

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,20 @@ jobs:
4545
- php: 7.1
4646
env: TARANTOOL_VERSION=2.4
4747

48+
# PHP 7.2
49+
# -------
50+
- php: 7.2
51+
env: TARANTOOL_VERSION=1.9
52+
- php: 7.2
53+
env: TARANTOOL_VERSION=1.10
54+
- php: 7.2
55+
env: TARANTOOL_VERSION=2.1
56+
# - php: 7.2
57+
# env: TARANTOOL_VERSION=2.2
58+
- php: 7.2
59+
env: TARANTOOL_VERSION=2.3
60+
- php: 7.2
61+
env: TARANTOOL_VERSION=2.4
4862

4963
python:
5064
- 2.7

test.all.sh

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

33
set -exu # Strict shell (w/o -o pipefail)
44

5-
php_version_list="7.0 7.1"
5+
php_version_list="7.0 7.1 7.2"
66
tarantool_version_list="1.6 1.7 1.9 1.10 2.1 2.2 2.3 2.4"
77

88
# gh-151: disable tarantool-2.2 due to lack of support the new

0 commit comments

Comments
 (0)