From e0d16189056ab905b2b9e8a23cf62fcca76c106b Mon Sep 17 00:00:00 2001 From: Aina Niemetz Date: Thu, 20 May 2021 15:26:49 -0700 Subject: [PATCH] Disable unit testing for clang builds. (#6595) We currently have issues with clang 11 failing for white unit tests. This disables unit tests for clang builds. --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc5b0e995..0d9ed04a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: - name: ubuntu:production-dbg-clang os: ubuntu-latest env: CC=clang CXX=clang++ - config: production --auto-download --assertions --tracing --unit-testing --cln --gpl + config: production --auto-download --assertions --tracing --cln --gpl cache-key: dbgclang exclude_regress: 3-4 run_regression_args: --no-check-proofs @@ -175,7 +175,6 @@ jobs: run: | ${{ matrix.env }} ./configure.sh ${{ matrix.config }} \ --prefix=$(pwd)/build/install \ - --unit-testing \ --werror - name: Build -- 2.30.2