2015-03-23 03:14:19 +08:00
|
|
|
language: php
|
|
|
|
|
|
|
|
php:
|
|
|
|
- 5.4
|
|
|
|
- 5.5
|
|
|
|
- 5.6
|
|
|
|
- 7.0
|
2017-06-17 22:23:21 +08:00
|
|
|
- 7.1
|
2016-01-17 01:08:23 +08:00
|
|
|
# - hhvm
|
2015-03-23 03:14:19 +08:00
|
|
|
|
|
|
|
# faster builds on new travis setup not using sudo
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
# cache vendor dirs
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.composer/cache
|
|
|
|
|
2018-12-06 01:15:52 +08:00
|
|
|
services:
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- mysql -e 'CREATE DATABASE IF NOT EXISTS yii2_basic_tests;'
|
|
|
|
|
2015-03-23 03:14:19 +08:00
|
|
|
install:
|
|
|
|
- travis_retry composer self-update && composer --version
|
2016-07-25 07:38:25 +08:00
|
|
|
- travis_retry composer update --dev --prefer-dist --no-interaction
|
2017-11-03 06:36:10 +08:00
|
|
|
# install php extensions
|
|
|
|
- |
|
|
|
|
if (php --version | grep -i HipHop > /dev/null); then
|
|
|
|
echo "Skipping imagick and gmagick tests on HHVM"
|
|
|
|
else
|
|
|
|
pear config-set preferred_state beta
|
|
|
|
printf "\n" | pecl install imagick
|
|
|
|
# gmagick is not installed on travis currently
|
|
|
|
#printf "\n" | pecl install gmagick
|
|
|
|
fi
|
2015-03-23 03:14:19 +08:00
|
|
|
# setup application:
|
|
|
|
- |
|
|
|
|
sed -i "s/'cookieValidationKey' => ''/'cookieValidationKey' => 'testkey'/" config/web.php
|
|
|
|
|
|
|
|
script:
|
|
|
|
- |
|
2016-07-25 07:38:25 +08:00
|
|
|
php -S localhost:8080 -t web > /dev/null 2>&1 &
|
2017-06-17 22:23:21 +08:00
|
|
|
vendor/bin/codecept run
|