egroupware/.travis.yml

92 lines
2.8 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
# test installation and run all tests with these databases
env:
matrix:
- DB=mysql
- DB=postgres
2016-05-29 15:41:12 +02:00
services:
- memcached
# - mysql we use mariadb instead installed via addons below
- 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:
2016-07-12 22:08:49 +02:00
- sudo apt-get update -qq
2016-07-12 22:14:39 +02:00
- sudo apt-get install -y myrepos libpcre3-dev
2016-07-12 22:08:49 +02:00
- case $(phpenv version-name) in
2016-07-12 22:37:30 +02:00
"5.4")
yes "" | pecl install memcache;
echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
2016-07-12 22:08:49 +02:00
yes "" | pecl install apcu-4.0.11;
2016-07-12 22:37:30 +02:00
echo "extension=apcu.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
2016-07-12 22:08:49 +02:00
yes "" | pecl install igbinary;
echo "extension=igbinary.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
2016-07-12 23:17:55 +02:00
echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
2016-07-12 21:54:14 +02:00
;;
2016-07-12 22:37:30 +02:00
"5.5"|"5.6")
yes "" | pecl install memcache;
2016-07-12 22:37:30 +02:00
yes "" | pecl install apcu-4.0.11;
yes "" | pecl install igbinary;
2016-07-12 23:17:55 +02:00
echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
2016-07-12 22:37:30 +02:00
;;
"7")
2016-07-12 22:08:49 +02:00
yes "" | pecl install apcu;
2016-07-12 23:17:55 +02:00
echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
;;
"hhvm")
2016-07-12 21:54:14 +02:00
;;
esac
2016-08-05 18:29:36 +02:00
- phpenv config-rm xdebug.ini
#- php -m
2016-08-03 13:53:39 +02:00
- curl https://svn.stylite.de/fix_mrconfig 2>/dev/null | php
- mr --trust-all --stats up
- (cd activesync; mr --trust-all --stats up)
# installing phpunit in version suitable for used PHP version
- composer update phpunit/phpunit
2016-07-19 14:18:16 +02:00
# create data directory
- sudo mkdir /var/lib/egroupware
- sudo chown travis /var/lib/egroupware
2016-05-29 15:41:12 +02:00
script:
# install egroupware (PostgreSQL need some specific handling as it is not the default and we can not create users via sql)
- case $DB in
postgres)
2016-08-06 11:43:23 +02:00
/usr/bin/php --version;
`which php`;
psql -U postgres -c 'create database egroupware';
php doc/rpm-build/post_install.php --db_type pgsql --db_port 5432 --db_user postgres --db_pass ''
--source_dir `pwd` --start_db '' --autostart_db '' --start_webserver '' --webserver_user ''
;;
*)
php doc/rpm-build/post_install.php
--source_dir `pwd` --start_db '' --autostart_db '' --start_webserver '' --webserver_user ''
;;
esac
2016-07-19 14:18:16 +02:00
#- mysql -uroot -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