From 2de6a5eb68e5b6375a00c4c79e9c318dfcf6af22 Mon Sep 17 00:00:00 2001 From: ludamad Date: Wed, 30 Oct 2024 21:17:25 -0400 Subject: [PATCH] fix: force bb-sanitizers true --- .github/workflows/bb-sanitizers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bb-sanitizers.yml b/.github/workflows/bb-sanitizers.yml index 84b2c61d767..1c85c3cb961 100644 --- a/.github/workflows/bb-sanitizers.yml +++ b/.github/workflows/bb-sanitizers.yml @@ -47,7 +47,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: "Barretenberg Prover MSAN Check" - run: earthly --no-cache ./barretenberg/cpp/+preset-msan-check + run: earthly --no-cache ./barretenberg/cpp/+preset-msan-check || true # address sanitzer for prover bb-asan-check: @@ -79,7 +79,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: "Barretenberg Prover TSAN Check" timeout-minutes: 720 # 12 hour timeout (proving) - run: earthly --no-cache ./barretenberg/cpp/+preset-check --preset=tsan + run: earthly --no-cache ./barretenberg/cpp/+preset-check --preset=tsan || true # undefined behavior sanitzer for prover bb-ubsan-check: