From 057fc59a894a5e52cee73f56aec8f14bb56efcfc Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Mon, 24 May 2021 15:47:26 +0200 Subject: [PATCH] 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) --- .github/workflows/windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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* -- 2.47.2