File: .travis.yml

package info (click to toggle)
php-sabredav 1.8.12-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,924 kB
  • sloc: php: 28,633; sql: 271; python: 221; makefile: 35; xml: 25; sh: 8
file content (33 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (4)
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
language: php
php:
  - 5.3.3
  - 5.3
  - 5.4
  - 5.5
  - 5.6
  - hhvm

matrix:
  fast_finish: true
  allow_failures:
    - php: hhvm

env:
  matrix:
    - VOBJECT=2 LOWEST_DEPS=""
    - VOBJECT=2 LOWEST_DEPS="--prefer-lowest"
    - VOBJECT=3 LOWEST_DEPS=""
    - VOBJECT=3 LOWEST_DEPS="--prefer-lowest"

services:
  - mysql


before_script:
  - mysql -e 'create database sabredav'
  - composer self-update
  - if [ "$VOBJECT" == "3" ]; then cp tests/composer.vobject3.json composer.json; fi
  - composer update --prefer-source $LOWEST_DEPS

script:
  - phpunit --configuration tests/phpunit.xml