winfsp/appveyor.yml

31 lines
903 B
YAML

version: '{build}'
branches:
only:
- master
environment:
CONFIGURATION: Release
install:
- appveyor AddMessage "Set testsigning on and reboot" -Category Information
- bcdedit /set testsigning on
- ps: Restart-Computer -Force
- ps: Start-Sleep -s 10
build_script:
- appveyor AddMessage "Reboot complete" -Category Information
- bcdedit | find /i "testsigning"
- tools\build.bat %CONFIGURATION%
test_script:
- for %%f in ("build\VStudio\build\%CONFIGURATION%\winfsp-*.msi") do start /wait msiexec /i %%f /qn INSTALLLEVEL=1000
-
- appveyor AddTest winfsp-tests-x64 -Outcome Running
- build\VStudio\build\%CONFIGURATION%\winfsp-tests-x64.exe
- appveyor UpdateTest winfsp-tests-x64 -Outcome Passed
-
- appveyor AddTest winfsp-tests-x86 -Outcome Running
- build\VStudio\build\%CONFIGURATION%\winfsp-tests-x86.exe
- appveyor UpdateTest winfsp-tests-x86 -Outcome Passed