summaryrefslogtreecommitdiffstats
path: root/.github/workflows/windows.yml
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-05-24 15:47:26 +0200
committerTomas Mraz <tomas@openssl.org>2021-05-25 11:53:36 +0200
commit057fc59a894a5e52cee73f56aec8f14bb56efcfc (patch)
tree885f9ee3ef6b58cc585e1de784eccf705a20b24d /.github/workflows/windows.yml
parent3113192705b27958609f525725f830d046f0ded7 (diff)
Windows CI: properly drop test_fuzz* tests to speed up things
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/15433)
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 80dfb7921c..0d0b594808 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -32,7 +32,7 @@ jobs:
run: nmake
- name: test
working-directory: _build
- run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz
+ run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz*
- name: install
# Run on 64 bit only as 32 bit is slow enough already
if: $${{ matrix.arch == 'win64' }}
@@ -57,7 +57,7 @@ jobs:
run: nmake
- name: test
working-directory: _build
- run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz
+ run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz*
minimal:
runs-on: windows-latest
steps:
@@ -75,4 +75,4 @@ jobs:
run: nmake
- name: test
working-directory: _build
- run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz
+ run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz*