Skip to content

Commit 3aceccf

Browse files
committed
Add nightly PHP to the matrix
Signed-off-by: Michal Čihař <[email protected]>
1 parent 2792078 commit 3aceccf

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,21 @@ php:
77
- "7.0"
88
- "7.1"
99
- "hhvm"
10-
env:
11-
matrix:
12-
- DBASE=yes
13-
- DBASE=no
10+
- "nightly"
11+
1412
matrix:
13+
fast_finish: true
14+
allow_failures:
15+
- php: "nightly"
1516
exclude:
1617
- php: "hhvm"
1718
env: DBASE=yes
1819

20+
env:
21+
matrix:
22+
- DBASE=yes
23+
- DBASE=no
24+
1925
install:
2026
- if [ "$DBASE" = "yes" ] ; then ./ci/install-dbase ; fi
2127
- composer install

ci/install-dbase

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -x
44
set -e
55

6-
if [ "$TRAVIS_PHP_VERSION" = "7.0" -o "$TRAVIS_PHP_VERSION" = "7.1" ] ; then
6+
if [ "$TRAVIS_PHP_VERSION" = "7.0" -o "$TRAVIS_PHP_VERSION" = "7.1" -o "$TRAVIS_PHP_VERSION" = "nightly" ] ; then
77
git clone --depth 1 https://github.com/mote0230/dbase-pecl-php7.git php7-dbase
88
cd php7-dbase/
99
phpize

0 commit comments

Comments
 (0)