summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: a4321d6a7e27c13b2bf286de5be18ec5a2576668 (plain)
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
language: php

sudo: false

php:
#  - 5.5
#  - 5.6
  - 7

matrix:
  fast_finish: true

addons:
  sauce_connect: true

cache:
  directories:
  - $HOME/.composer/cache

before_install:
  - composer selfupdate

install:
  - composer install

before_script:
  - export PATH=./bin/:$PATH
  - export SAUCE_BUILD=$TRAVIS_BUILD_NUMBER
  - export SAUCE_TUNNEL_IDENTIFIER=$TRAVIS_JOB_NUMBER

script:
  - phing functionaltest

#after_script:
#  - php ./bin/coveralls -v