From 9fa6acdf5bf53b6f26d6bf2f1bdab65da782ec08 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 17 Jun 2021 17:55:59 -0400 Subject: [PATCH] ci: patch for CentOS 8 build --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de7aeeb00..e273ab516 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -592,6 +592,7 @@ jobs: - name: Install dependencies run: python3 -m pip install cmake -r tests/requirements.txt --prefer-binary + # Added Debug build type due to unexplained segfault after CentOS8 updated to GCC 8.4 - name: Configure shell: bash run: > @@ -600,6 +601,7 @@ jobs: -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON -DCMAKE_CXX_STANDARD=11 + -DCMAKE_BUILD_TYPE=Debug -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)") - name: Build