mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
66 lines
3.6 KiB
YAML
66 lines
3.6 KiB
YAML
language: php
|
|
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
- 5.5
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
services: mongodb
|
|
|
|
install:
|
|
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
|
|
|
|
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
|
|
|
|
- ulimit -n 10000
|
|
- sudo apt-get update
|
|
- sudo apt-get install -y --force-yes apache2 libapache2-mod-php5 php5-curl wkhtmltopdf
|
|
- sudo sed -i -e "s,/var/www,$(pwd)/web,g" /etc/apache2/sites-available/default
|
|
- export MINK_EXTENSION_PARAMS='base_url=http://localhost:8000/app_test.php'
|
|
- sudo /etc/init.d/apache2 restart
|
|
- composer self-update
|
|
- composer require doctrine/mongodb-odm="1.0.*@dev" --no-update
|
|
- composer require jmikola/geojson="~1.0" --no-update
|
|
- composer install --prefer-source --no-interaction
|
|
- wget http://getcomposer.org/composer.phar
|
|
- php -d memory_limit=2048M composer.phar update doctrine/mongodb-odm
|
|
- 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
|
|
- wget http://selenium.googlecode.com/files/selenium-server-standalone-2.35.0.jar
|
|
- java -jar selenium-server-standalone-2.35.0.jar > /dev/null &
|
|
- sleep 5
|
|
|
|
script:
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@account && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@addressing && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@cart && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@checkout && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@currencies && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@dashboard && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@homepage && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@inventory && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@orders && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@payments && ~@javascript'
|
|
- php -d memory_limit=4096M bin/behat --no-snippets --no-paths --verbose --tags '@products && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@promotions && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@settings && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@shipping && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@taxation && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@taxonomies && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@localization && ~@javascript'
|
|
- php -d memory_limit=2048M bin/behat --no-snippets --no-paths --verbose --tags '@users && ~@javascript,@oauth'
|
|
- bin/phpspec run -f dot
|
|
|
|
notifications:
|
|
email: "travis-ci@sylius.org"
|
|
irc: "irc.freenode.org#sylius-dev"
|