Skip to content

Commit

Permalink
Create appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
recca0120 authored and Recca Tsai committed Mar 11, 2017
1 parent 9e3d8b6 commit 5e9f991
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/build export-ignore
/tests export-ignore
/documents
/docs
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
Expand Down
46 changes: 46 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
build: false
platform: x86
clone_folder: c:\projects\payum-ecpay

cache:
- c:\php -> appveyor.yml

environment:
matrix:
- PHP_DOWNLOAD_FILE: php-5.5.9-nts-Win32-VC11-x86.zip
- PHP_DOWNLOAD_FILE: php-5.6.4-nts-Win32-VC11-x86.zip
- PHP_DOWNLOAD_FILE: php-7.0.0-nts-Win32-VC14-x86.zip
- PHP_DOWNLOAD_FILE: php-7.1.0-nts-Win32-VC14-x86.zip

init:
- SET PATH=c:\php;%PATH%
- SET COMPOSER_NO_INTERACTION=1
- SET PHP=1

install:
- IF EXIST c:\php (SET PHP=0) ELSE (mkdir c:\php)
- cd c:\php
- IF %PHP%==1 appveyor DownloadFile https://raw.githubusercontent.com/symfony/binary-utils/master/cacert.pem
- IF %PHP%==1 appveyor DownloadFile http://windows.php.net/downloads/releases/archives/%PHP_DOWNLOAD_FILE%
- IF %PHP%==1 7z x %PHP_DOWNLOAD_FILE% -y >nul
- IF %PHP%==1 del /Q *.zip
- IF %PHP%==1 echo @php %%~dp0composer.phar %%* > composer.bat
- IF %PHP%==1 copy /Y php.ini-development php.ini
- IF %PHP%==1 echo max_execution_time=1200 >> php.ini
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini
- IF %PHP%==1 echo extension_dir=ext >> php.ini
- IF %PHP%==1 echo extension=php_curl.dll >> php.ini
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
- IF %PHP%==1 echo extension=php_intl.dll >> php.ini
- IF %PHP%==1 echo extension=php_mbstring.dll >> php.ini
- IF %PHP%==1 echo extension=php_fileinfo.dll >> php.ini
- IF %PHP%==1 echo extension=php_pdo_sqlite.dll >> php.ini
- IF %PHP%==1 echo curl.cainfo=c:\php\cacert.pem >> php.ini
- appveyor DownloadFile https://getcomposer.org/composer.phar
- cd c:\projects\payum-ecpay
- mkdir %APPDATA%\Composer
- composer update --prefer-dist --no-progress --ansi

test_script:
- cd c:\projects\payum-ecpay
- vendor\bin\phpunit.bat --verbose

0 comments on commit 5e9f991

Please sign in to comment.