summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2019-09-13 09:05:08 +0200
committerBernd Edlinger <bernd.edlinger@hotmail.de>2019-09-13 15:11:33 +0200
commit8ff728d430f4087ddfffed6adf1c25ec6433b71c (patch)
treee798647786e749d0a5f0d73700da9ea7f9827089 /appveyor.yml
parent515c728dbaa92211d2eafb0041ab9fcd258fdc41 (diff)
Add a minimal windows build config for AppVeyor
[extended tests] Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9886)
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 24966c0faa..f17fea5ce2 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -10,6 +10,7 @@ environment:
configuration:
- shared
- plain
+ - minimal
before_build:
- ps: >-
@@ -23,6 +24,8 @@ before_build:
- ps: >-
If ($env:Configuration -Match "shared") {
$env:SHARED="no-makedepend"
+ } ElseIf ($env:Configuration -Match "minimal") {
+ $env:SHARED="no-shared no-dso no-makedepend no-autoload-config no-engine no-comp no-cms no-dh no-dsa no-ec2m no-srp no-des no-mdc2 no-md4 no-rc2 no-rc4 no-bf no-camellia no-cast no-idea no-seed no-whirlpool no-ocsp no-sm2 no-sm3 no-sm4 no-ssl3 no-ssl3-method no-psk no-heartbeats no-nextprotoneg no-sctp no-srtp no-asm -DOPENSSL_SMALL_FOOTPRINT"
} Else {
$env:SHARED="no-shared no-makedepend"
}