From d52868c6c53935f3c12165e470ba3928295d747c Mon Sep 17 00:00:00 2001 From: TheLastRar Date: Wed, 26 Oct 2022 01:44:30 +0100 Subject: [PATCH] CI: Exclude zlib tests Signed-off-by: TheLastRar --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ba8f9d38..b3c1a6ec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -223,13 +223,13 @@ jobs: - name: Test if: runner.os != 'Windows' run: | - ctest --test-dir build --output-on-failure + ctest -E "^example64|example$" --test-dir build --output-on-failure - name: Test (Windows) if: runner.os == 'Windows' shell: msys2 {0} run: | - ctest --test-dir build --output-on-failure + ctest -E "^example64|example$" --test-dir build --output-on-failure ## # CODE SCAN