-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
89 lines (80 loc) · 3.22 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
language: php
sudo: required
cache:
directories:
- $HOME/.composer/cache
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
env:
# plugin code
global:
PLUGIN_CODE=ProductPriority
matrix:
# for coverrage
- ECCUBE_VERSION=master DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres COVERRAGE=true
# ec-cube master
- ECCUBE_VERSION=master DB=mysql USER=root DBNAME=myapp_test DBPASS=' ' DBUSER=root
- ECCUBE_VERSION=master DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres
- ECCUBE_VERSION=master DB=sqlite
# ec-cube 3.0.16
- ECCUBE_VERSION=3.0.16 DB=mysql USER=root DBNAME=myapp_test DBPASS=' ' DBUSER=root
- ECCUBE_VERSION=3.0.16 DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
exclude:
- php: 7.1
env: ECCUBE_VERSION=master DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres COVERRAGE=true
- php: 5.6
env: ECCUBE_VERSION=master DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres COVERRAGE=true
- php: 5.5
env: ECCUBE_VERSION=master DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres COVERRAGE=true
- php: 5.4
env: ECCUBE_VERSION=master DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres COVERRAGE=true
- php: 5.3
env: ECCUBE_VERSION=master DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres COVERRAGE=true
allow_failures:
- php: 7.0
env: ECCUBE_VERSION=master DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres COVERRAGE=true
- env: ECCUBE_VERSION=master DB=sqlite
- env: ECCUBE_VERSION=3.0.13 DB=sqlite
before_script:
# archive plugin
- tar cvzf ${HOME}/${PLUGIN_CODE}.tar.gz ./*
# clone ec-cube
- git clone https://github.com/EC-CUBE/ec-cube.git
- cd ec-cube
# checkout version
- sh -c "if [ ! '${ECCUBE_VERSION}' = 'master' ]; then git checkout -b ${ECCUBE_VERSION} refs/tags/${ECCUBE_VERSION}; fi"
# update composer
- composer selfupdate
- composer global require hirak/prestissimo
- composer install --dev --no-interaction -o
# install ec-cube
- php eccube_install.php $DB none -V
# install plugin
- php app/console plugin:develop install --path=${HOME}/${PLUGIN_CODE}.tar.gz
# enable plugin
- php app/console plugin:develop enable --code=${PLUGIN_CODE}
script:
# exec phpunit on ec-cube
- if [[ ! $COVERRAGE = 'true' ]]; then phpunit app/Plugin/${PLUGIN_CODE}/Tests; fi
- if [[ $COVERRAGE = 'true' ]]; then ./vendor/bin/phpunit -c app/Plugin/${PLUGIN_CODE}/phpunit.xml.dist --coverage-clover=coverage.clover; fi
after_script:
# disable plugin
- php app/console plugin:develop disable --code=${PLUGIN_CODE} || exit 1
# uninstall plugin
- php app/console plugin:develop uninstall --code=${PLUGIN_CODE} || exit 1
# re install plugin
- php app/console plugin:develop install --code=${PLUGIN_CODE} || exit 1
# re enable plugin
- php app/console plugin:develop enable --code=${PLUGIN_CODE} || exit 1
after_success:
# for coveralls
- if [[ $COVERRAGE = 'true' ]]; then php vendor/bin/coveralls -v -x coverage.clover; fi