forked from microweber/microweber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (31 loc) · 1006 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
language: php
php:
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
- php: hhvm
# optionally specify a list of environments, for example to test different RDBMS
env:
- DB=mysql
before_install:
- composer self-update
# execute any number of scripts before the test run, custom env's are available as variables
before_script:
- travis_retry composer install
- composer --optimize-autoloader
# - if [[ "$DB" == "pgsql" ]]; then psql -c "DROP DATABASE IF EXISTS hello_world_test;" -U postgres; fi
# - if [[ "$DB" == "pgsql" ]]; then psql -c "create database hello_world_test;" -U postgres; fi
# - if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS microweber_tests;" -uroot; fi
# omitting "script:" will default to phpunit
# use the $DB env variable to determine the phpunit.xml to use
script: phpunit
# configure notifications (email, IRC, campfire etc)
notifications:
irc: "irc.freenode.org#microweber"
branches:
only:
- master
- 1.0.8