forked from Sylius/Sylius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
51 lines (40 loc) · 1.73 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
46
47
48
49
50
51
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- TEST_SUITE=1
- TEST_SUITE=2
services: mongodb
before_install:
- sudo apt-get update > /dev/null
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
install:
- sudo apt-get install -y --force-yes apache2 libapache2-mod-php5 php5-curl php5-intl wkhtmltopdf > /dev/null
- sudo sed -i -e "s,/var/www,$(pwd)/web,g" /etc/apache2/sites-available/default
- sudo /etc/init.d/apache2 restart
before_script:
- echo '' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- echo "memory_limit=4096M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- export MINK_EXTENSION_PARAMS='base_url=http://localhost:8000/app_test.php'
- composer self-update
- composer install --prefer-source --no-interaction
- composer require doctrine/mongodb-odm="1.0.*@dev" --no-update
- composer require jmikola/geojson="~1.0" --no-update
- composer update doctrine/mongodb-odm jmikola/geojson --prefer-source --no-interaction
- app/console doctrine:database:create --env=test > /dev/null
- app/console doctrine:schema:create --env=test > /dev/null
- app/console doctrine:phpcr:repository:init --env=test > /dev/null
- app/console cache:warmup --env=test > /dev/null
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99
# - curl http://selenium-release.storage.googleapis.com/2.41/selenium-server-standalone-2.41.0.jar > selenium.jar
# - java -jar selenium.jar > /dev/null &
- sleep 5
script:
- travis/run-suite-$TEST_SUITE
notifications:
email: "travis-ci@sylius.org"
irc: "irc.freenode.org#sylius-dev"