forked from nextcloud/richdocuments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
73 lines (63 loc) · 1.66 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
sudo: required
dist: trusty
language: php
php:
- 7.1
- 7.2
- 7.3
env:
global:
- "CORE_BRANCH=master"
- "APP_NAME=richdocuments"
matrix:
- "DB=mysql TEST=lint"
- "DB=mysql TEST=checker"
- "DB=mysql TEST=phpunit"
addons:
postgresql: "9.5"
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
services:
- postgresql
matrix:
include:
- php: 7.0
env: "DB=sqlite CORE_BRANCH=stable15"
- php: 7.0
env: "DB=sqlite CORE_BRANCH=stable15 TEST=lint"
- php: 7.2
env: "DB=sqlite"
- php: 7.2
env: "DB=pgsql"
allow_failures:
- env: "DB=mysql TEST=checker"
fast_finish: true
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
before_install:
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- . ./before_install.sh $APP_NAME $CORE_BRANCH $DB
# Add some output debugging information
- cd ../server
- ./occ check
- ./occ status
- ./occ app:list
script:
- cd apps/$APP_NAME/
# Test the app
- if [ "$TEST" == 'lint' ]; then find . -name \*.php -exec php -l "{}" \;; fi
- if [ "$TEST" == 'lint' ]; then ../../occ app:check-code $APP_NAME -c deprecation; fi
- if [ "$TEST" == 'checker' ]; then ../../occ app:check-code $APP_NAME -c private -c strong-comparison; fi
# Run phpunit tests
- cd tests/
- if [ "$TEST" == 'phpunit' ]; then phpunit --configuration phpunit.xml; fi
after_script:
# Create coverage report
- if [ "$TEST" == 'phpunit' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TEST" == 'phpunit' ]; then php ocular.phar code-coverage:upload --format=php-clover clover.xml; fi
- cd ../