diff options
author | TheLastRar <TheLastRar@users.noreply.github.com> | 2022-10-26 01:44:30 +0100 |
---|---|---|
committer | TheLastRar <TheLastRar@users.noreply.github.com> | 2022-11-04 18:11:36 +0000 |
commit | d52868c6c53935f3c12165e470ba3928295d747c (patch) | |
tree | f91e4ba24ea37307a7003921daef5d55557970c5 /.github | |
parent | 29c1639b1dd0a578046bb9227d6c8d53132a52b1 (diff) | |
download | PrismLauncher-d52868c6c53935f3c12165e470ba3928295d747c.tar.gz PrismLauncher-d52868c6c53935f3c12165e470ba3928295d747c.tar.bz2 PrismLauncher-d52868c6c53935f3c12165e470ba3928295d747c.zip |
CI: Exclude zlib tests
Signed-off-by: TheLastRar <TheLastRar@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files 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 |