-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
40 lines (36 loc) · 1.56 KB
/
appveyor.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
build: false
platform:
- x64
clone_folder: c:\projects\gplacesphp-api-client
environment:
matrix:
- dependencies: low
php_ver_target: 7.1.32
- dependencies: high
php_ver_target: 7.1.32
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
- SET ANSICON=121x90 (121x90)
install:
- IF EXIST c:\tools\php (SET PHP=0) # Checks for the PHP install being cached
- ps: appveyor-retry choco install php --version $env:php_ver_target -y --no-progress --package-parameters='"/InstallDir:C:\tools\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_fileinfo.dll >> php.ini
- IF %PHP%==1 echo extension=php_curl.dll >> php.ini
- IF %PHP%==1 echo @php %%~dp0composer.phar %%* > composer.bat
- appveyor-retry appveyor DownloadFile https://getcomposer.org/composer.phar
- cd c:\projects\gplacesphp-api-client
- IF %dependencies%==low appveyor-retry composer update --prefer-lowest --no-progress -n --no-suggest
- IF %dependencies%==high appveyor-retry composer update --no-progress -n --no-suggest
- composer show
## Run the actual test
test_script:
- cd c:\projects\gplacesphp-api-client
- vendor/bin/phpunit