magento-plugin/.travis.yml

19 lines
652 B
YAML
Raw Normal View History

2014-07-02 06:39:21 -07:00
language: php
php:
- 5.5
- 5.4
- 5.3
before_install:
- sudo apt-get install php5-xdebug
2014-07-02 06:39:21 -07:00
install:
- composer install
before_script:
- mysql -e 'create database magento;'
2014-07-02 13:21:47 -07:00
- if [ -e build/magento/app/etc/local.xml ]; then rm build/magento/app/etc/local.xml; fi
- php bin/n98-magerun install --dbHost="127.0.0.1" --dbUser="travis" --dbPass="" --dbName="magento" --installSampleData=yes --useDefaultConfigParams=yes --magentoVersion="1.9.0.1" --installationFolder="build/magento" --baseUrl="http://www.localhost.com:8080" -n
script: php bin/phing build-travis
2014-07-02 13:11:25 -07:00
cache:
directories:
- vendor
- build/magento