From e65b0389a365b7477d2ec0914845c2850f450c75 Mon Sep 17 00:00:00 2001 From: Huang-Ming Huang Date: Sat, 28 Sep 2024 15:26:24 -0500 Subject: [PATCH] fail-fast: false --- .github/workflows/linux.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2d900fe..1faa68c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -23,15 +23,16 @@ jobs: build: strategy: + fail-fast: false matrix: os: [ubuntu-24.04] compiler: [gcc-12, gcc-13, gcc-14, clang-16, clang-17, clang-18] build_type: [Release, Debug] protoc: [find] include: - - sanitize: no + - sanitize: OFF - build_type: Debug - sanitize: yes + sanitize: ON runs-on: ubuntu-24.04