Skip to content

Commit f913c46

Browse files
committed
travis-ci: enable PHP 7.1 in testing
We use a maximal phpunit version, which supports a certain php version. So phpunit-7 is in action for PHP 7.1. The previous commit enables support of phpunit-7 for the test suite, so we ready to enable PHP 7.1 in testing.
1 parent 4835886 commit f913c46

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ language: php
55

66
# gh-151: disable tarantoo-2.2 due to lack of support the new
77
# _index format.
8+
#
9+
# Disable tarantool-1.6 and 1.7 on php 7.1-7.4, because
10+
# php-7.[1-4]-cli docker images are based on Debian Buster, but we
11+
# have no tarantool-1.[6-7] packages for this distribution.
812
jobs:
913
include:
1014
# PHP 7.0
@@ -26,6 +30,22 @@ jobs:
2630
- php: 7.0
2731
env: TARANTOOL_VERSION=2.4
2832

33+
# PHP 7.1
34+
# -------
35+
- php: 7.1
36+
env: TARANTOOL_VERSION=1.9
37+
- php: 7.1
38+
env: TARANTOOL_VERSION=1.10
39+
- php: 7.1
40+
env: TARANTOOL_VERSION=2.1
41+
# - php: 7.1
42+
# env: TARANTOOL_VERSION=2.2
43+
- php: 7.1
44+
env: TARANTOOL_VERSION=2.3
45+
- php: 7.1
46+
env: TARANTOOL_VERSION=2.4
47+
48+
2949
python:
3050
- 2.7
3151

test.all.sh

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,28 @@
22

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

5-
php_version_list="7.0"
5+
php_version_list="7.0 7.1"
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
99
# _index format.
10+
#
11+
# Disable tarantool-1.6 and 1.7 on php 7.1-7.4, because
12+
# php-7.[1-4]-cli docker images are based on Debian Buster, but we
13+
# have no tarantool-1.[6-7] packages for this distribution.
1014
exceptions="
1115
php-7.0-tarantool-2.2
16+
php-7.1-tarantool-1.6
17+
php-7.1-tarantool-1.7
1218
php-7.1-tarantool-2.2
19+
php-7.2-tarantool-1.6
20+
php-7.2-tarantool-1.7
1321
php-7.2-tarantool-2.2
22+
php-7.3-tarantool-1.6
23+
php-7.3-tarantool-1.7
1424
php-7.3-tarantool-2.2
25+
php-7.4-tarantool-1.6
26+
php-7.4-tarantool-1.7
1527
php-7.4-tarantool-2.2
1628
"
1729

0 commit comments

Comments
 (0)