summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2018-02-23 17:24:41 +0100
committerAndy Polyakov <appro@openssl.org>2018-02-24 14:17:24 +0100
commit441bcafd865947474741a71fea49fc5d078b6532 (patch)
tree1caf878aa41339e2282088103e9e80565303cac7 /appveyor.yml
parent6afed267db47a8aa604a3a9e78ac72efa02363df (diff)
appveyor.yml: omit makedepend step.
makedepend makes lesser sense in a throw-away build like CI, but it spares some computational time, because with MSVC it takes separate per-file compiler invocation. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5452)
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index b3165d59d6..5074a3116c 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -22,9 +22,9 @@ before_build:
}
- ps: >-
If ($env:Configuration -Match "shared") {
- $env:SHARED=""
+ $env:SHARED="no-makedepend"
} Else {
- $env:SHARED="no-shared"
+ $env:SHARED="no-shared no-makedepend"
}
- ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS"))
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%