Skip to content

Commit

Permalink
Merge pull request #1 from antalaron/appveyor
Browse files Browse the repository at this point in the history
Add AppVeyor test
  • Loading branch information
antalaron authored Apr 15, 2017
2 parents 2736007 + fb875d3 commit 17f3e02
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
build: false

platform:
- x64

clone_folder: c:\projects\vat-number-validator

environment:
matrix:
- dependencies: lowest
php_ver_target: 7.0
- dependencies: highest
php_ver_target: 7.0
- dependencies: lowest
php_ver_target: 7.1
- dependencies: highest
php_ver_target: 7.1

## Cache composer, chocolatey and php bits
cache:
- '%LOCALAPPDATA%\Composer\files -> composer.lock'
- composer.phar
# Cache chocolatey packages
- C:\ProgramData\chocolatey\bin -> .appveyor.yml
- C:\ProgramData\chocolatey\lib -> .appveyor.yml
# Cache php install
- c:\tools\php -> .appveyor.yml

init:
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;%PATH%
- SET COMPOSER_NO_INTERACTION=1
- SET PHP=1 # This var is connected to PHP install cache

install:
- IF EXIST c:\tools\php (SET PHP=0) # Checks for the PHP install being cached
- ps: appveyor-retry cinst --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $env:php_ver_target | sort { [version]($_ -split '\|' | select -last 1) } -Descending | Select-Object -first 1) -replace '[php|]','')
- cd c:\tools\php
- IF %PHP%==1 copy php.ini-production php.ini /Y
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini
- IF %PHP%==1 echo extension_dir=ext >> php.ini
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
- IF %PHP%==1 echo extension=php_mbstring.dll >> php.ini
- IF %PHP%==1 echo extension=php_intl.dll >> php.ini
- IF %PHP%==1 echo extension=php_fileinfo.dll >> php.ini
- IF %PHP%==1 echo @php %%~dp0composer.phar %%* > composer.bat
- appveyor-retry appveyor DownloadFile https://getcomposer.org/composer.phar
- cd c:\projects\vat-number-validator
- IF %dependencies%==lowest appveyor-retry composer update --prefer-lowest --no-progress --profile -n
- IF %dependencies%==highest appveyor-retry composer update --no-progress --profile -n
- composer show

## Run the actual test
test_script:
- cd c:\projects\vat-number-validator
- vendor/bin/phpunit -c phpunit.xml.dist

0 comments on commit 17f3e02

Please sign in to comment.