mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
58 lines
1.4 KiB
YAML
58 lines
1.4 KiB
YAML
language: php
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7
|
|
- hhvm
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
#env:
|
|
#matrix:
|
|
#- LOWEST_DEPS=""
|
|
#- LOWEST_DEPS="--prefer-lowest"
|
|
|
|
services:
|
|
- memcached
|
|
- mysql
|
|
# - postgres
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
# this fixes hhvm builds according to https://docs.travis-ci.com/user/languages/php#HHVM-versions-on-Trusty
|
|
group: edge
|
|
|
|
before_script:
|
|
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ] || [ $(echo "$TRAVIS_PHP_VERSION 7.0" | tr " " "\n" | sort -V | head -n1) = "7.0" ];
|
|
then
|
|
phpenv config-add .travis.php7.ini;
|
|
else
|
|
phpenv config-add .travis.ini;
|
|
fi
|
|
- php -m
|
|
# - mysql -e 'create database egroupware'
|
|
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
|
|
#- composer update --prefer-source $LOWEST_DEPS
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y myrepos
|
|
- mr --trust-all --stats up
|
|
# installing phpunit in version suitable for used PHP version
|
|
- composer update phpunit/phpunit
|
|
# install egroupware
|
|
- sudo mkdir /var/lib/egroupware
|
|
- sudo chown travis /var/lib/egroupware
|
|
|
|
script:
|
|
- php doc/rpm-build/post_install.php --sourcedir `pwd`
|
|
- mysql -e 'show tables' egroupware
|
|
# Ubuntu has problems with #!/usr/bin/env php -dapc.enable=1, it stalls forever
|
|
- php -dapc.enable_cli=1 doc/test-cli.php
|
|
- ./doc/php_syntax_check.sh
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache |