forked from jadb/cakephp-monolog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (38 loc) · 979 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
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- CAKE_VERSION=master
- CAKE_VERSION=2.4.1
before_script:
- composer install
- mysql -e 'CREATE DATABASE cakephp_test;'
- git clone git://github.com/cakephp/cakephp ../cakephp && cd ../cakephp && git checkout $CAKE_VERSION
- cp -R ../cakephp-monolog plugins/Monolog
- chmod -R 777 ../cakephp/app/tmp
- set +H
- echo "<?php
class DATABASE_CONFIG {
public \$default = array(
'persistent' => false,
'host' => '0.0.0.0',
'login' => 'travis',
'password' => '',
'database' => 'cakephp_test',
'prefix' => ''
);
public \$test = array(
'persistent' => false,
'host' => '0.0.0.0',
'login' => 'travis',
'password' => '',
'database' => 'cakephp_test',
'prefix' => ''
);
}" > ../cakephp/app/Config/database.php
script:
- ./lib/Cake/Console/cake test Monolog Lib/Log/Engine/MonologLog --stderr
notifications:
email: false