]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
appveyor.yml: Let 'nmake' do builds in parallel on all CPU cores
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>
Tue, 1 Dec 2020 08:14:15 +0000 (09:14 +0100)
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>
Thu, 3 Dec 2020 14:38:28 +0000 (15:38 +0100)
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13580)

appveyor.yml

index c3d070fc539e45d5c8ed378ac015ddc2bdcb76fa..aa99f5062bec9a78d749db373f1769768a3362a6 100644 (file)
@@ -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 {