forked from infection/infection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
68 lines (62 loc) · 2.58 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
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
build: false
platform:
- x64
clone_folder: c:\projects\workspace
environment:
matrix:
- dependencies: highest
php_ver_target: 7.2
xdebug_ver: '2.6.0-7.2-vc15'
- dependencies: highest
php_ver_target: 7.1
xdebug_ver: '2.6.0-7.1-vc14'
- dependencies: current
php_ver_target: 7.2
xdebug_ver: '2.6.0-7.2-vc15'
- dependencies: current
php_ver_target: 7.1
xdebug_ver: '2.6.0-7.1-vc14'
- dependencies: current
php_ver_target: 7.0
xdebug_ver: '2.6.0-7.0-vc14'
cache: # cache is cleared when linked file is modified
- '%LOCALAPPDATA%\Composer\files -> composer.lock'
- composer.phar
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
- c:\tools\php -> appveyor.yml
init:
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;%PATH%
- SET PHP=1
- SET ANSICON=121x90 (121x90)
- SET COMPOSER_NO_INTERACTION=1
install:
- IF EXIST c:\tools\php (SET PHP=0)
# Enable Windows update service
- ps: Set-Service wuauserv -StartupType Manual
# Install PHP
- 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 @php %%~dp0composer.phar %%* > composer.bat
# Install composer and update per matrix
- appveyor-retry appveyor DownloadFile https://getcomposer.org/composer.phar
- cd c:\projects\workspace
- IF %dependencies%==current appveyor-retry composer install
- IF %dependencies%==highest appveyor-retry composer update --no-suggest --ignore-platform-reqs
- composer show
# Install XDebug for code coverage
- ps: if ($env:PHP -eq "1" ) { .ci\appveyor_install_xdebug.ps1 }
test_script:
- cd c:\projects\workspace
- vendor\bin\phpunit --coverage-clover=clover.xml --coverage-xml=coverage/coverage-xml --log-junit=coverage/phpunit.junit.xml
- php bin\infection --threads=4 --log-verbosity=none --coverage=coverage
after_test:
- ps: |
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
bash codecov.sh