From 7d5672a7ed5cdcaca6965545ecf8f064ea855172 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Thu, 10 Oct 2024 13:03:11 +0300 Subject: [PATCH] Finalize --- .github/workflows/check.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 143e96992..0fe971859 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -53,10 +53,11 @@ jobs: type: [debug] sanitizer: [null] include: + # Do one release build on stable, just to check that it works. - os: ubuntu-latest toolchain: stable type: release - + # Add sanitizer builds. - os: ubuntu-latest toolchain: nightly type: debug @@ -77,6 +78,7 @@ jobs: toolchain: nightly type: debug sanitizer: thread + # macOS doesn't support the leak checker yet. # - os: macos-latest # toolchain: nightly # type: debug @@ -145,7 +147,7 @@ jobs: verbose: true env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - if: matrix.sanitizer == null && matrix.type == 'debug' && matrix.toolchain == 'stable' + if: matrix.type == 'debug' && matrix.toolchain == 'stable' - name: Run tests with sanitizers if: matrix.sanitizer != null