forked from netgen/TagsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (37 loc) · 992 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
47
language: php
cache:
directories:
- vendor
matrix:
# mark as finished before allow_failures are run
fast_finish: true
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
# test only master (+ pull requests)
branches:
only:
- master
# make sure to update composer to latest available version
before_install:
- phpenv config-rm xdebug.ini
- composer self-update
# install dependencies
install: composer install --prefer-source
# setup requirements for running unit tests
before_script:
- cp config.php-DEVELOPMENT vendor/ezsystems/ezpublish-kernel/config.php
# execute phpunit as the script command
script:
- ./vendor/bin/phpunit -d memory_limit=-1 --colors -c phpunit.xml
- ./vendor/bin/phpunit -d memory_limit=-1 --colors -c phpunit-integration-legacy.xml
# disable mail notifications
notification:
email: false
# reduce depth (history) of git checkout
git:
depth: 30
# we don't need sudo
sudo: false