version: '{build}' environment: matrix: - CONFIGURATION: Debug TESTING: Func - CONFIGURATION: Release TESTING: Func #- CONFIGURATION: Release # TESTING: Avast #- CONFIGURATION: Release # TESTING: Perf init: #- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) install: - ps: | # Hack to make WDK 1903 work on VS2015. # See https://github.com/appveyor-tests/WDK-10.0.14393.0/blob/31cf12217fe0c92b218c70d7027dfe145be4f4cb/appveyor.yml#L7 [xml]$targets = get-content "C:\Program Files (x86)\Windows Kits\10\build\WindowsDriver.Common.targets" $usingTask = $targets.ChildNodes[1].UsingTask | ? {$_.TaskName -eq "ValidateNTTargetVersion"} $usingTask.AssemblyFile = '$(WDKContentRoot)build\bin\Microsoft.DriverKit.Build.Tasks.16.0.dll' $targets.Save("C:\Program Files (x86)\Windows Kits\10\build\WindowsDriver.Common.targets") - git submodule update --init --recursive - appveyor AddMessage "Change boot configuration and reboot" -Category Information - bcdedit /set testsigning on - if %TESTING%==Func verifier /standard /driver winfsp-x64.sys - if exist %SystemRoot%\memory.dmp del %SystemRoot%\memory.dmp - ps: Restart-Computer -Force - ps: Start-Sleep -s 60 build_script: - appveyor AddMessage "Reboot complete" -Category Information # build cygfuse - C:\cygwin64\setup-x86_64.exe -qnNd -P cygport - C:\cygwin64\bin\bash --login -c "make -C '%CD%\opt\cygfuse' dist" - C:\cygwin\setup-x86.exe -qnNd -P cygport - C:\cygwin\bin\bash --login -c "make -C '%CD%\opt\cygfuse' dist" # build winfsp - tools\build.bat %CONFIGURATION% test_script: - choco install winfsp -s build\VStudio\build\%CONFIGURATION% -y --pre - if %TESTING%==Func appveyor DownloadFile http://www.secfs.net/Test.Filter.Driver.zip && 7z x Test.Filter.Driver.zip - if %TESTING%==Func start /wait msiexec /i "Test.Filter.Driver\HCK Filter.Driver Content-x86_en-us.msi" /qn - if %TESTING%==Func tools\nmake-ext-test.bat %CONFIGURATION% - if %TESTING%==Func tools\run-tests.bat %CONFIGURATION% - if %TESTING%==Func tools\run-tests.bat %CONFIGURATION% ifstest - if %TESTING%==Func tools\run-tests.bat %CONFIGURATION% sample - if %TESTING%==Func tools\run-tests.bat %CONFIGURATION% compat - if %TESTING%==Avast choco install avastfreeantivirus && fltmc instances -v "C:" - if %TESTING%==Avast tools\run-tests.bat %CONFIGURATION% avast-tests - if %TESTING%==Perf tools\run-perf-tests.bat %CONFIGURATION% baseline > perf-tests.csv && type perf-tests.csv & appveyor PushArtifact perf-tests.csv - choco uninstall winfsp -y - if exist %SystemRoot%\memory.dmp exit 1 on_finish: - if exist %SystemRoot%\memory.dmp (7z a memory.dmp.zip %SystemRoot%\memory.dmp && appveyor PushArtifact memory.dmp.zip) - verifier /query #- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))