From 2624fd01e48727db41c60f81b0dca6058fb3cb42 Mon Sep 17 00:00:00 2001 From: Dominik Drexler Date: Fri, 9 Feb 2024 14:59:44 +0100 Subject: [PATCH] . --- .github/workflows/benchmarks.yml | 4 ++-- .github/workflows/integrationtests.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 5d0bfe6..5fe3322 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -25,12 +25,12 @@ jobs: - name: Configure, Build, and Install Dependencies run: | cd dependencies - cmake -S . -B build -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/dependencies/installs + cmake -S . -B build -DCMAKE_INSTALL_PREFIX="$GITHUB_WORKSPACE/dependencies/installs" cmake --build build -j$(nproc) - name: Configure, and Build flatmemory run: | - cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_BENCHMARKS=ON -S . -B build -DCMAKE_PREFIX_PATH=$GITHUB_WORKSPACE/dependencies/installs + cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_BENCHMARKS=ON -S . -B build -DCMAKE_PREFIX_PATH="$GITHUB_WORKSPACE/dependencies/installs" cmake --build build -j$(nproc) # Run benchmarks and store the output to a file diff --git a/.github/workflows/integrationtests.yml b/.github/workflows/integrationtests.yml index 4071caa..8571828 100644 --- a/.github/workflows/integrationtests.yml +++ b/.github/workflows/integrationtests.yml @@ -13,7 +13,7 @@ jobs: - name: Configure, Build, and Install Dependencies run: | cd tests/integration/dependencies - cmake -S . -B build -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/tests/integration/dependencies/installs + cmake -S . -B build -DCMAKE_INSTALL_PREFIX="$GITHUB_WORKSPACE/tests/integration/dependencies/installs" cmake --build build -j$(nproc) - name: Build and Test Project