diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-12-01 09:14:15 +0100 |
---|---|---|
committer | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-12-03 15:38:28 +0100 |
commit | 68b9c2cbf7c89ae58117043e6afc4fed866ac79f (patch) | |
tree | a66b950591b07157daa5682e380d097800fce954 /appveyor.yml | |
parent | appveyor.yml: Let 'nmake' run by defaut silently (/S), using MAKEVERBOSE like... (diff) | |
download | openssl-68b9c2cbf7c89ae58117043e6afc4fed866ac79f.tar.xz openssl-68b9c2cbf7c89ae58117043e6afc4fed866ac79f.zip |
appveyor.yml: Let 'nmake' do builds in parallel on all CPU cores
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13580)
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index c3d070fc53..aa99f5062b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ image: - - Visual Studio 2017 + - Visual Studio 2017 platform: - x64 @@ -62,6 +62,7 @@ build_script: - ps: >- If ($env:Configuration -Match "shared" -or $env:EXTENDED_TESTS) { cmd /c "%NMAKE% build_all_generated 2>&1" + # Unfortunately, CL=/MP would not have parallelizing effect cmd /c "%NMAKE% PERL=no-perl 2>&1" } - cd .. @@ -70,6 +71,7 @@ test_script: - cd _build - ps: >- If ($env:Configuration -Match "shared" -or $env:EXTENDED_TESTS) { + # Unfortunately, HARNESS_JOBS=4 would not have parallelizing effect if ($env:EXTENDED_TESTS) { cmd /c "%NMAKE% test HARNESS_VERBOSE_FAILURE=yes 2>&1" } Else { |