forked from openssl/openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
58 lines (51 loc) · 1.19 KB
/
appveyor.yml
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
56
57
58
platform:
- x86
- x64
environment:
matrix:
- VSVER: 14
configuration:
- plain
- shared
before_build:
- ps: >-
If ($env:Platform -Match "x86") {
$env:VCVARS_PLATFORM="x86"
$env:TARGET="VC-WIN32"
} Else {
$env:VCVARS_PLATFORM="amd64"
$env:TARGET="VC-WIN64A"
}
- ps: >-
If ($env:Configuration -Match "shared") {
$env:SHARED=""
} Else {
$env:SHARED="no-shared"
}
- ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
- mkdir _build
- cd _build
- perl ..\Configure %TARGET% no-asm %SHARED%
- cd ..
build_script:
- cd _build
- nmake
- cd ..
test_script:
- cd _build
- nmake test
- cd ..
# Fake deploy script to test installation
deploy_script:
- mkdir _install
- cd _build
- nmake install install_docs DESTDIR=..\_install
- cd ..
notifications:
- provider: Email
to:
on_build_success: false
on_build_failure: true
on_build_status_changed: true