-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
74 lines (68 loc) · 1.69 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
language: php
services:
- docker
matrix:
jobs:
fast_finish: true
allow_failures:
- php: 7.2
- php: hhvm
- php: nightly
include:
- # test
- stage: Test
php: 7.1
before_script:
- phpenv config-rm xdebug.ini
- composer selfupdate
- composer install --no-interaction
script:
- ./vendor/bin/phpunit
- # test
- stage: Test
php: 7.2
before_script:
- composer selfupdate
- composer update --no-interaction
script:
- ./vendor/bin/phpunit
- # test
- stage: Test
php: hhvm
before_script:
- composer selfupdate
- composer update --no-interaction
script:
- ./vendor/bin/phpunit
- # test
- stage: Test
php: nightly
before_script:
- composer selfupdate
- composer update --no-interaction
script:
- ./vendor/bin/phpunit
- stage: Integration
php: 7.1
before_script:
- docker run -it -d -p 8080:8080 crossbario/crossbar
- composer selfupdate
- composer install --no-interaction
script:
- ./vendor/bin/phpunit --configuration ./phpunit.integration.xml.dist
- # publish
- stage: Coverage
php: 7.1
branches:
only:
- master
- develop
before_script:
- composer selfupdate
- composer install --no-interaction
- docker run -it -d -p 8080:8080 crossbario/crossbar
script:
- phpdbg -qrr ./vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- bash <(curl -s https://codecov.io/bash)
- php vendor/bin/codacycoverage clover coverage.clover