forked from firegento/firegento-magesetup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (32 loc) · 879 Bytes
/
.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
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- MAGENTO_VERSION="1.6.2.0"
- MAGENTO_VERSION="1.7.0.2"
- MAGENTO_VERSION="1.8.1.0"
- MAGENTO_VERSION="1.9.0.1"
- MAGENTO_VERSION="1.9.1.0"
matrix:
fast_finish: true
exclude:
- php: 5.5
env: MAGENTO_VERSION="1.6.2.0"
- php: 5.5
env: MAGENTO_VERSION="1.7.0.2"
before_install:
- mkdir test/
- curl -sS https://getcomposer.org/installer | php
- chmod +x ./composer.phar
- ./composer.phar --version
- ./composer.phar install --dev
before_script:
- CURR_DIR=$(pwd)
- bin/mage-ci install test ${MAGENTO_VERSION} magento_test -c -t -r http://mage-ci.firegento.com
- bin/mage-ci install-module test $CURR_DIR
- git clone https://github.com/EcomDev/EcomDev_PHPUnit.git ./phpunit/
- bin/mage-ci install-module $CURR_DIR/test $CURR_DIR/phpunit/
script:
- bin/mage-ci phpunit test