Consistently use arm_arch.h constants in armcap assembly code.
[openssl.git] / appveyor.yml
1 platform:
2     - x86
3     - x64
4
5 environment:
6     matrix:
7         - VSVER: 9
8         - VSVER: 10
9         - VSVER: 11
10         - VSVER: 12
11         - VSVER: 14
12
13 configuration:
14     - plain
15     - shared
16
17 matrix:
18     allow_failures:
19         - platform: x64
20           VSVER: 9
21         - platform: x64
22           VSVER: 10
23         - platform: x64
24           VSVER: 11
25
26 before_build:
27     - ps: >-
28         If ($env:Platform -Match "x86") {
29             $env:VCVARS_PLATFORM="x86"
30             $env:TARGET="VC-WIN32"
31             $env:DO="do_ms"
32         } Else {
33             $env:VCVARS_PLATFORM="amd64"
34             $env:TARGET="VC-WIN64A"
35             $env:DO="do_win64a"
36         }
37     - ps: >-
38         If ($env:Configuration -Like "*shared*") {
39             $env:MAK="ntdll.mak"
40         } Else {
41             $env:MAK="nt.mak"
42         }
43     - ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
44     - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
45     - perl Configure %TARGET% no-asm
46     - call ms\%DO%
47
48 build_script:
49     - nmake /f ms\%MAK%
50
51 test_script:
52     - nmake /f ms\%MAK% test
53
54 notifications:
55     - provider: Email
56       to:
57           - openssl-commits@openssl.org
58       on_build_success: false
59       on_build_failure: true
60       on_build_status_changed: true