summaryrefslogtreecommitdiffstats
path: root/.github/workflows/windows.yml
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-06-02 17:26:02 +0200
committerPauli <pauli@openssl.org>2021-06-04 09:39:09 +1000
commitd0196ddcba60a69930d1b1fec579949c8788be34 (patch)
treedb13b3f1403cb01d69882fc735c51f6f8abdedd8 /.github/workflows/windows.yml
parent376a8c3f46b658027e77165ecb52021b6b27b61a (diff)
CI windows.yml: Silence 'nmake' builds except 'minimal'; ci.yml: make 'minimal' build verbose
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15594)
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r--.github/workflows/windows.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 0de6e22893..bcfa45a4ba 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -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