-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
46 lines (38 loc) · 869 Bytes
/
.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
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.7
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1 DB=mysql CAKE_VERSION=2.7
#- php: 5.4
#env:
#- PHPCS=1 DB=mysql CAKE_VERSION=2.7
before_script:
- git clone -b master https://github.com/FriendsOfCake/travis.git --depth 1 ../travis
- ../travis/before_script.sh
- cd ../cakephp/app
- echo "require './vendor/autoload.php';spl_autoload_unregister(array('App', 'load'));spl_autoload_register(array('App', 'load'), true, true);" >> Config/core.php
- cat Config/core.php
- cd ..
script:
- ../travis/script.sh
after_success:
- ../travis/after_success.sh
notifications:
email: false