We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2792078 commit 3aceccfCopy full SHA for 3aceccf
2 files changed
.travis.yml
@@ -7,15 +7,21 @@ php:
7
- "7.0"
8
- "7.1"
9
- "hhvm"
10
-env:
11
- matrix:
12
- - DBASE=yes
13
- - DBASE=no
+ - "nightly"
+
14
matrix:
+ fast_finish: true
+ allow_failures:
15
+ - php: "nightly"
16
exclude:
17
- php: "hhvm"
18
env: DBASE=yes
19
20
+env:
21
+ matrix:
22
+ - DBASE=yes
23
+ - DBASE=no
24
25
install:
26
- if [ "$DBASE" = "yes" ] ; then ./ci/install-dbase ; fi
27
- composer install
ci/install-dbase
@@ -3,7 +3,7 @@
3
set -x
4
set -e
5
6
-if [ "$TRAVIS_PHP_VERSION" = "7.0" -o "$TRAVIS_PHP_VERSION" = "7.1" ] ; then
+if [ "$TRAVIS_PHP_VERSION" = "7.0" -o "$TRAVIS_PHP_VERSION" = "7.1" -o "$TRAVIS_PHP_VERSION" = "nightly" ] ; then
git clone --depth 1 https://github.com/mote0230/dbase-pecl-php7.git php7-dbase
cd php7-dbase/
phpize
0 commit comments