From: Tomas Mraz Date: Mon, 24 May 2021 13:47:26 +0000 (+0200) Subject: Windows CI: properly drop test_fuzz* tests to speed up things X-Git-Tag: openssl-3.0.0-beta1~393 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=057fc59a894a5e52cee73f56aec8f14bb56efcfc;p=thirdparty%2Fopenssl.git Windows CI: properly drop test_fuzz* tests to speed up things Reviewed-by: Paul Dale Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/15433) --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 80dfb7921c8..0d0b5948080 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*