forked from joomla-x/joomla-pythagoras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (36 loc) · 1.15 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
# Forces new Travis-CI Infrastructure
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
services:
- memcached
- redis-server
before_script:
# Make sure all dev dependencies are installed
- composer install
# 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
- if [ $TRAVIS_PHP_VERSION == "5.5" ] || [ $TRAVIS_PHP_VERSION == "5.6" ]; then phpenv config-add build/config/travis/phpenv/memcached.ini; fi
# PHP 5.5+ use APCu
# - if [ $TRAVIS_PHP_VERSION == "5.5" ] || [ $TRAVIS_PHP_VERSION == "5.6" ]; then printf "\n" | pecl install apcu-beta; fi
- if [ $TRAVIS_PHP_VERSION == "5.5" ] || [ $TRAVIS_PHP_VERSION == "5.6" ]; then phpenv config-add build/config/travis/phpenv/redis.ini; fi
script:
- libraries/vendor/bin/robo test
- libraries/vendor/bin/robo check:style
branches:
except:
- 2.5.x