forked from karoldanutama/dev-ops-yii2-app-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
59 lines (52 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
# - hhvm
# - hhvm-nightly
# run build against hhvm but allow them to fail
# http://docs.travis-ci.com/user/build-configuration/#Rows-That-are-Allowed-To-Fail
matrix:
fast_finish: true
allow_failures:
# - php: hhvm-nightly
- php: 7.0
# faster builds on new travis setup not using sudo
sudo: false
# cache vendor dirs
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer self-update && composer --version
- travis_retry composer global require "fxp/composer-asset-plugin:~1.0.0"
- export PATH="$HOME/.composer/vendor/bin:$PATH"
- travis_retry composer install --dev --prefer-dist --no-interaction
# codeception
- travis_retry composer global require "codeception/codeception=2.0.*" "codeception/specify=*" "codeception/verify=*"
# setup application:
- |
mysql -e 'create database devopstest;' -u root
php init --env=Test --overwrite
php yii migrate --interactive=0
cd tests
codecept build
cd ..
script:
- |
cd web
php -S localhost:8080 > /dev/null 2>&1 &
cd ../tests
codecept run
cd ..
deploy:
provider: heroku
api_key: "0c1aa98e-9938-4874-9f3e-349dfde7eb9a"
skip_cleanup: true
strategy: api
buildpack: https://github.com/ddollar/heroku-buildpack-multi
app: peaceful-cove-8102
on:
php: 5.5