CI windows.yml: Silence 'nmake' builds except 'minimal'; ci.yml: make 'minimal' build...
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>
Wed, 2 Jun 2021 15:26:02 +0000 (17:26 +0200)
committerPauli <pauli@openssl.org>
Thu, 3 Jun 2021 23:39:09 +0000 (09:39 +1000)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15594)

.github/workflows/ci.yml
.github/workflows/windows.yml

index 46a096cb753fbbb94bfd17b62e8dbe195768f81f..8513cbb7297c95eef4f84cbcb283281f5a47cfe8 100644 (file)
@@ -81,7 +81,7 @@ jobs:
     - name: config
       run: ./config --banner=Configured --strict-warnings no-bulk no-pic no-asm -DOPENSSL_NO_SECURE_MEMORY -DOPENSSL_SMALL_FOOTPRINT && perl configdata.pm --dump
     - name: make
-      run: make -s -j4
+      run: make -j4 # verbose, so no -s here
     - name: make test
       run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
 
index 0de6e228937a4b77c46cb6d7a8da531f2c5d5929..bcfa45a4ba0707960dd265d176b195311a490c75 100644 (file)
@@ -29,7 +29,7 @@ jobs:
         perl configdata.pm --dump
     - name: build
       working-directory: _build
-      run: nmake
+      run: nmake /S
     - name: test
       working-directory: _build
       run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
@@ -54,7 +54,7 @@ jobs:
         perl configdata.pm --dump
     - name: build
       working-directory: _build
-      run: nmake
+      run: nmake /S
     - name: test
       working-directory: _build
       run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
@@ -72,7 +72,7 @@ jobs:
         perl configdata.pm --dump
     - name: build
       working-directory: _build
-      run: nmake
+      run: nmake # verbose, so no /S here
     - name: test
       working-directory: _build
       run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4