forked from AOEpeople/Aoe_Scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (35 loc) · 839 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
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
#- 5.6
#- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
env:
global:
- MAGENTO_DB_ALLOWSAME=1
- SKIP_CLEANUP=1
matrix:
- MAGENTO_VERSION=magento-ce-1.9.1.0
- MAGENTO_VERSION=magento-ce-1.9.0.1
- MAGENTO_VERSION=magento-ce-1.8.1.0
- MAGENTO_VERSION=magento-ce-1.8.0.0
- MAGENTO_VERSION=magento-ce-1.7.0.2
before_script:
- curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
script:
# Code Style
- php phpcs.phar --standard=./phpcs.xml --encoding=utf-8 --report-width=180 ./app ./shell
# Unit Tests
- curl -sSL https://raw.githubusercontent.com/AOEpeople/MageTestStand/master/setup.sh | bash
notifications:
email:
recipients:
on_success: always
on_failure: always