egroupware/.travis.yml

67 lines
1.6 KiB
YAML
Raw Normal View History

2016-05-29 15:41:12 +02:00
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
2016-05-29 15:48:51 +02:00
# - postgres
2016-05-29 15:41:12 +02:00
addons:
mariadb: '10.0'
2016-05-30 18:31:46 +02:00
sudo: required
2016-05-30 18:43:03 +02:00
dist: trusty
# this fixes hhvm builds according to https://docs.travis-ci.com/user/languages/php#HHVM-versions-on-Trusty
group: edge
2016-05-30 18:27:31 +02:00
2016-05-29 15:41:12 +02:00
before_script:
- echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
2016-07-12 21:54:14 +02:00
- echo $(phpenv version-name)
- case $(phpenv version-name) in;
"5.4"|"5.5"|"5.6")
yes "" | pecl install apcu-4.0.11
yes "" | pecl install igbinary
;;
"7.0")
yes "" | pecl install apcu
;;
esac
- yes "" | pecl install memcache
- php -m
2016-05-29 15:41:12 +02:00
# - mysql -e 'create database egroupware'
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
#- composer update --prefer-source $LOWEST_DEPS
2016-05-30 18:31:46 +02:00
- sudo apt-get update -qq
2016-05-30 19:40:36 +02:00
- 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
2016-05-29 15:41:12 +02:00
script:
- php doc/rpm-build/post_install.php --source_dir `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
2016-05-29 15:41:12 +02:00
cache:
directories:
- $HOME/.composer/cache