winfsp/appveyor.yml
2016-05-21 14:26:53 -07:00

26 lines
664 B
YAML

version: '{build}'
branches:
only:
- master
environment:
CONFIGURATION: Release
install:
- git submodule update --init
- 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%
- cd ext\test && nmake /f Nmakefile
test_script:
- for %%f in ("build\VStudio\build\%CONFIGURATION%\winfsp-*.msi") do start /wait msiexec /i %%f /qn INSTALLLEVEL=1000
- tools\run-tests.bat %CONFIGURATION%