From 6c30d50018dd6007a5e4e3314bd14d7d1aaef054 Mon Sep 17 00:00:00 2001 From: Christian Gutschow Date: Thu, 12 Sep 2024 11:50:40 +0100 Subject: [PATCH] use double curly braces --- .github/workflows/documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index f39a33e6..259e2534 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -58,7 +58,7 @@ jobs: export CMAKE_PREFIX_PATH=${{github.workspace}}/local:$CMAKE_PREFIX_PATH mkdir sopt/build cd sopt/build - cmake .. --fresh -DCMAKE_INSTALL_PREFIX=${github.workspace}/local -Ddocasa=OFF -Ddompi=OFF -Dopenmp=OFF -Ddocs=OFF -Dtests=OFF -Dexamples=OFF + cmake .. --fresh -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local -Ddocasa=OFF -Ddompi=OFF -Dopenmp=OFF -Ddocs=OFF -Dtests=OFF -Dexamples=OFF make -j$(nproc --ignore 1) install - name: Configure @@ -66,7 +66,7 @@ jobs: export CMAKE_PREFIX_PATH=${{github.workspace}}/local:$CMAKE_PREFIX_PATH mkdir -p ${{github.workspace}}/build cd ${{github.workspace}}/build - cmake .. --fresh -DCMAKE_INSTALL_PREFIX=${github.workspace}/local -Ddompi=OFF -Dopenmp=OFF -Ddocs=ON + cmake .. --fresh -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local -Ddompi=OFF -Dopenmp=OFF -Ddocs=ON make -j$(nproc --ignore 1) install - name: Deploy to GH pages