REL-0.9 Allow some services to fail in travis

This commit is contained in:
cytopia 2017-05-17 08:45:31 +02:00
parent 26785ac448
commit 967ab54075
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2

View File

@ -12,7 +12,7 @@ services:
###
### Global variables
### Specify combinations
###
env:
###
@ -20,7 +20,6 @@ env:
### As PHP (any versoin) needs to be able to run with everything,
### I am going to test any PHP version against any other service.
###
matrix:
###
### PHP vs WWW
###
@ -30,7 +29,6 @@ env:
- SRV1=PHP VER1=php-fpm-5.6 SRV2=HTTPD VER2=apache-2.2
- SRV1=PHP VER1=php-fpm-7.0 SRV2=HTTPD VER2=apache-2.2
- SRV1=PHP VER1=php-fpm-7.1 SRV2=HTTPD VER2=apache-2.2
- SRV1=PHP VER1=hhvm-latest SRV2=HTTPD VER2=apache-2.2
# PHP vs Apache 2.4
- SRV1=PHP VER1=php-fpm-5.4 SRV2=HTTPD VER2=apache-2.4
- SRV1=PHP VER1=php-fpm-5.5 SRV2=HTTPD VER2=apache-2.4
@ -160,6 +158,14 @@ env:
- SRV1=PHP VER1=hhvm-latest SRV2=PGSQL VER2=9.6
###
### Build Matrix definition
###
matrix:
allow_failures:
- env: SRV1=PHP VER1=hhvm-latest SRV2=HTTPD VER2=apache-2.2
###
### Berfore Install
###
@ -182,8 +188,11 @@ before_script:
# http://docs.travis-ci.com/user/database-setup/#MySQL
- sudo /etc/init.d/mysql stop || true
- sudo /etc/init.d/postgresql stop || true
- sudo /etc/init.d/memcached stop || true
- sudo service mysql stop || true
- sudo service postgresql stop || true
- sudo service memcached stop || true
- netstat -tulpn
###