-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
96 lines (78 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
language: php
php:
- '7.2'
services:
- mysql
git:
depth: 1
mysql:
database: test
username: root
encoding: utf8
before_install:
- sudo apt-get update > /dev/null
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
install:
# Install composer packages, will also trigger dump-autoload
- travis_retry composer install --no-interaction
- travis_retry composer require codeclimate/php-test-reporter --no-interaction
# Install coveralls.phar
- wget -c -nc --retry-connrefused --tries=0 https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar
- chmod +x coveralls.phar
- php coveralls.phar --version
script:
- php run.php
# CODECLIMATE_REPO_TOKEN reqired
- vendor/bin/test-reporter
after_success:
# Submit coverage report to Coveralls servers, see .coveralls.yml
- travis_retry php coveralls.phar -v
# Submit coverage report to codecov.io
- bash <(curl -s https://codecov.io/bash)
notifications:
email:
on_success: never
on_failure: always
on_error: always
language: php
php:
- '7.2'
services:
- mysql
git:
depth: 1
mysql:
database: test
username: root
encoding: utf8
before_install:
- sudo apt-get update > /dev/null
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
install:
# Install composer packages, will also trigger dump-autoload
- travis_retry composer install --no-interaction
- travis_retry composer require codeclimate/php-test-reporter --no-interaction
# Install coveralls.phar
- wget -c -nc --retry-connrefused --tries=0 https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar
- chmod +x coveralls.phar
- php coveralls.phar --version
script:
- php run.php
# CODECLIMATE_REPO_TOKEN reqired
- vendor/bin/test-reporter
after_success:
# Submit coverage report to Coveralls servers, see .coveralls.yml
- travis_retry php coveralls.phar -v
# Submit coverage report to codecov.io
- bash <(curl -s https://codecov.io/bash)
notifications:
email:
on_success: never
on_failure: always
on_error: always
branches:
only:
- master
- develop