Skip to content

Commit

Permalink
Merge pull request #44 from EC-CUBE/chihiro-adachi-patch-1
Browse files Browse the repository at this point in the history
3.0.17対応
  • Loading branch information
kanako-kina committed Dec 3, 2018
2 parents 506fc74 + 16d5ed0 commit 9be0fe4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
23 changes: 13 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ env:
PLUGIN_CODE=ProductReview
matrix:
# 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
- ECCUBE_VERSION=3.1 DB=mysql USER=root DBNAME=myapp_test DBPASS=' ' DBUSER=root
- ECCUBE_VERSION=3.1 DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres
- ECCUBE_VERSION=3.1 DB=sqlite
# ec-cube 3.0.13
- ECCUBE_VERSION=3.0.13 DB=mysql USER=root DBNAME=myapp_test DBPASS=' ' DBUSER=root
- ECCUBE_VERSION=3.0.13 DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres
Expand All @@ -30,7 +30,9 @@ env:
# 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

# ec-cube 3.0.17
- ECCUBE_VERSION=3.0.17 DB=mysql USER=root DBNAME=myapp_test DBPASS=' ' DBUSER=root
- ECCUBE_VERSION=3.0.17 DB=pgsql USER=postgres DBNAME=myapp_test DBPASS=password DBUSER=postgres
matrix:
fast_finish: true
include:
Expand All @@ -39,15 +41,15 @@ matrix:
exclude:
allow_failures:
- php: 5.3
env: ECCUBE_VERSION=master DB=sqlite
env: ECCUBE_VERSION=3.1 DB=sqlite
- php: 5.4
env: ECCUBE_VERSION=master DB=sqlite
env: ECCUBE_VERSION=3.1 DB=sqlite
- php: 5.5
env: ECCUBE_VERSION=master DB=sqlite
env: ECCUBE_VERSION=3.1 DB=sqlite
- php: 5.6
env: ECCUBE_VERSION=master DB=sqlite
env: ECCUBE_VERSION=3.1 DB=sqlite
- php: 7.0
env: ECCUBE_VERSION=master DB=sqlite
env: ECCUBE_VERSION=3.1 DB=sqlite

install:
- gem install mime-types -v 2.99.1
Expand All @@ -60,7 +62,8 @@ before_script:
- 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"
- sh -c "if [ '${ECCUBE_VERSION}' = '3.1' ]; then git checkout -b ${ECCUBE_VERSION} origin/${ECCUBE_VERSION}; fi"
- sh -c "if [ ! '${ECCUBE_VERSION}' = '3.1' ]; then git checkout -b ${ECCUBE_VERSION} refs/tags/${ECCUBE_VERSION}; fi"
# update composer
- composer selfupdate
- composer global require hirak/prestissimo
Expand Down
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ install:
- git clone https://github.com/EC-CUBE/ec-cube.git %BASE_DIR%
- cd %BASE_DIR%
# checkout version
#- sh -c "if [ ! '%ECCUBE_VERSION%' = 'master' ]; then git checkout -b %ECCUBE_VERSION% refs/tags/%ECCUBE_VERSION%; fi"
- git checkout origin/3.1
# Set MySQL.
- cp tests/my.cnf c:\
- SET PATH=C:\Program Files\MySql\MySQL Server 5.7\bin\;%PATH%
Expand All @@ -54,6 +54,7 @@ install:
- echo extension=php_pdo_pgsql.dll >> C:\tools\php56\php.ini
- echo extension=php_curl.dll >> C:\tools\php56\php.ini
- echo extension=php_fileinfo.dll >> C:\tools\php56\php.ini
- echo extension=php_intl.dll >> C:\tools\php56\php.ini
- echo output_buffering = Off >> C:\tools\php56\php.ini
- echo default_charset = UTF-8 >> C:\tools\php56\php.ini
- echo mbstring.language = Japanese >> C:\tools\php56\php.ini
Expand Down

0 comments on commit 9be0fe4

Please sign in to comment.