From a53b0ec973093a5c8ea6d1026dedb3151039c152 Mon Sep 17 00:00:00 2001 From: Lucas Czech Date: Wed, 21 Feb 2024 08:42:27 -0300 Subject: [PATCH] Deactivate static CI build --- .github/workflows/ci.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 81d7de8..fc3ae4a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -185,10 +185,12 @@ jobs: fi # For static builds, set the according CMake option + # Deactivated for now, as static building with OpenMP is not possible. + # Will have to wait for gappa to use the genesis ThreadPool instead. export GAPPA_BUILD_STATIC="" - if [[ "${{ matrix.os }}" == "ubuntu-22.04" ]] && [[ "${{ matrix.compiler }}" == "gcc-13" ]]; then - export GAPPA_BUILD_STATIC="-DGAPPA_BUILD_STATIC=ON" - fi + # if [[ "${{ matrix.os }}" == "ubuntu-22.04" ]] && [[ "${{ matrix.compiler }}" == "gcc-13" ]]; then + # export GAPPA_BUILD_STATIC="-DGAPPA_BUILD_STATIC=ON" + # fi cmake -S . -B ./build -DGENESIS_USE_OPENMP=${GENESIS_USE_OPENMP} ${GAPPA_BUILD_STATIC}