-
Notifications
You must be signed in to change notification settings - Fork 182
/
.travis.yml
44 lines (39 loc) · 1.21 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
language: php
php:
#- 5.4
#- 5.5
- 5.6
#- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
# - hhvm
# faster builds on new travis setup not using sudo
sudo: false
# cache vendor dirs
cache:
directories:
- $HOME/.composer/cache
services:
- mysql
install:
- travis_retry composer self-update && composer --version && composer clearcache
- travis_retry composer update --prefer-dist --no-interaction
# setup application:
- |
./init --env=Development
sed -i s/root/travis/ common/config/main-local.php
sed -i "s/'cookieValidationKey' => ''/'cookieValidationKey' => 'testkey'/" frontend/config/main.php
sed -i "s/'cookieValidationKey' => ''/'cookieValidationKey' => 'testkey'/" backend/config/main.php
before_script:
- sudo service mysql start
- mysql -e 'CREATE DATABASE cms_test;'
- echo "extension = imagick.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- printf "\n" | pecl install -f imagick
- php yii_test migrate --interactive=0 frontendUri=//localhost adminUsername=admin adminPassword=123456
- cp -rf api/tests/acceptance.suite.yml.example api/tests/acceptance.suite.yml
- cp -rf api/tests/functional.suite.yml.example api/tests/functional.suite.yml
- cd frontend/web && php -S 0.0.0.0:8888 &
script:
- vendor/bin/codecept run