blob: 0294159d10a5ebc70875f8b953f2241edf0c78da (
plain) (
tree)
|
|
version: '{build}'
image: Visual Studio 2013
#environment:
# APPVEYOR_RDP_PASSWORD: 'FooBar01!'
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
environment:
matrix:
- appveyor_driver_target_os: Win7
- appveyor_driver_target_os: Win8
- appveyor_driver_target_os: Win8.1
platform:
- Win32
- x64
configuration:
- Debug
- Release
install:
- git submodule update --init --recursive
build_script:
- ps: .\.appveyor\build.ps1
for:
# Only build Release builds for master to speed things up:
- branches:
except:
- master
configuration:
- Debug
# Workers are 64-bit, can't load 32-bit drivers.
# https://github.com/appveyor/ci/issues/715
- matrix:
only:
- platform: x64
install:
- git submodule update --init --recursive
- appveyor.exe AddMessage "Enabling self-signed drivers..."
- bcdedit.exe /set TESTSIGNING ON
- appveyor.exe AddMessage "Rebooting the worker..."
- ps: Restart-Computer -Force
- ps: Start-Sleep -s 10
- appveyor.exe AddMessage "OK"
test_script:
- ps: .\.appveyor\test.ps1
|