aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/appveyor.yml
blob: 178db2b41e33d5cf922af8756921164e058f6614 (plain) (blame)
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
version: '{build}'
image: Visual Studio 2013

branches:
  only:
    - master

#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'))

platform:
  - Win32
  - x64

configuration:
  - Debug
  - Release

build_script:
  - ps: .\.appveyor\build.ps1

# Workers are 64-bit, can't load 32-bit drivers.
for:
-
  matrix:
    only:
      - platform: x64

  # https://github.com/appveyor/ci/issues/715
  install:
    - appveyor AddMessage "Enabling self-signed drivers..."
    - bcdedit.exe /set TESTSIGNING ON
    - appveyor AddMessage "Rebooting the worker..."
    - ps: Restart-Computer -Force
    - ps: Start-Sleep -s 10
    - appveyor AddMessage "OK"

  test_script:
    - ps: .\.appveyor\test.ps1