summaryrefslogtreecommitdiff
path: root/.appveyor.yml
blob: 67a71b8a19b49a7a9de741d44aba6fed63912e8c (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
# Appveyor's documentation is at https://www.appveyor.com/docs/build-phase/,
#  and a sample configuration file is at https://www.appveyor.com/docs/appveyor-yml/.
#  I have to admit its a bit complex and I don't fully understand it.

version: 1.0.{build}
clone_depth: 3

configuration:

- Debug
- Release

platform:

- Win32
- Win64

image:

- Visual Studio 2017
- Visual Studio 2015
- Visual Studio 2013
- Visual Studio 2012
- Visual Studio 2010

build:

  project: cryptest.sln
  verbosity: minimal
  parallel: true

test_script:

- cmd: >-

    msbuild /t:CopyCryptestToRoot cryptest.vcxproj
    
    cryptest.exe v
    
    cryptest.exe tv all

# Right now, we have a few failures that we don't know how to workaround.
#  - https://stackoverflow.com/questions/43441273/how-to-run-vcupgrade-before-appveyor-build
#  - https://stackoverflow.com/questions/43423761/cant-perform-64-bit-testing-under-appveyor
# Appveyor also complains that it can't find VS2010 tools even though the docs state they are there.
matrix:
#  allow_failures:

  exclude:
    - platform: Win64
      configuration: Debug
    - platform: Win64
      configuration: Release
    - image: Visual Studio 2010
    - image: Visual Studio 2017