No need to call EVP_CIPHER_CTX_init after EVP_CIPHER_CTX_new
[openssl.git] / appveyor.yml
1 platform:
2     - x86
3     - x64
4
5 environment:
6     matrix:
7         - VSVER: 14
8
9 configuration:
10     - plain
11     - shared
12
13 before_build:
14     - ps: >-
15         If ($env:Platform -Match "x86") {
16             $env:VCVARS_PLATFORM="x86"
17             $env:TARGET="VC-WIN32"
18         } Else {
19             $env:VCVARS_PLATFORM="amd64"
20             $env:TARGET="VC-WIN64A"
21         }
22     - ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
23     - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
24     - perl Configure %TARGET% no-asm
25
26 build_script:
27     - nmake
28
29 test_script:
30     - nmake test
31
32 notifications:
33     - provider: Email
34       to:
35           - openssl-commits@openssl.org
36       on_build_success: false
37       on_build_failure: true
38       on_build_status_changed: true