forked from joomla/joomla-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (39 loc) · 1.19 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
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
services:
- memcached
- redis-server
before_script:
# - composer self-update
# - composer update
- pyrus install -f pear/PHP_CodeSniffer-1.5.5
- pyrus install -f pear/Cache_Lite
- phpenv rehash
# Set up databases for testing
- mysql -e 'create database joomla_ut;'
- mysql joomla_ut < tests/unit/schema/mysql.sql
- psql -c 'create database joomla_ut;' -U postgres
- psql -d joomla_ut -a -f tests/unit/schema/postgresql.sql
# Set up Apache
# - ./build/travis/php-apache.sh
# Enable additional PHP extensions
- phpenv config-add build/travis/phpenv/memcached.ini
- phpenv config-add build/travis/phpenv/apc-$TRAVIS_PHP_VERSION.ini
- phpenv config-add build/travis/phpenv/redis.ini
script:
- phpunit --configuration travisci-phpunit.xml
- phpcs --report=full --extensions=php -p --standard=build/phpcs/Joomla .
branches:
except:
- 2.5.x
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/18687d008d633d02aa84
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false