From b1a2db27fb30c4dd7130bf8b284253ec1726967d Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 23 May 2024 14:42:38 -0400 Subject: [PATCH] TUrn off test suite, as centos-8 has a too old version of catch2 --- .github/workflows/ci-centos-8.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-centos-8.yml b/.github/workflows/ci-centos-8.yml index 5d04f16694..4de5b38a61 100644 --- a/.github/workflows/ci-centos-8.yml +++ b/.github/workflows/ci-centos-8.yml @@ -37,7 +37,7 @@ jobs: - name: Prepare run: mkdir build - name: Configure - run: cd build && cmake --version && cmake .. -DBUILD_MAN=0 -DBUILD_TEST_SUITE=1 -DENABLE_WERROR=1 -DZM_CRYPTO_BACKEND=${{ matrix.crypto_backend }} -DZM_JWT_BACKEND=${{ matrix.jwt_backend }} + run: cd build && cmake --version && cmake .. -DBUILD_MAN=0 -DBUILD_TEST_SUITE=0 -DENABLE_WERROR=1 -DZM_CRYPTO_BACKEND=${{ matrix.crypto_backend }} -DZM_JWT_BACKEND=${{ matrix.jwt_backend }} - name: Build run: cd build && make -j3 | grep --line-buffered -Ev '^(cp lib\/|Installing.+\.pm)' && (exit ${PIPESTATUS[0]}) - name: Run tests