From 0c4225bc15744161b18b16c9290d1d3651fb427c Mon Sep 17 00:00:00 2001 From: kboyarinov Date: Thu, 6 Feb 2025 04:44:53 -0800 Subject: [PATCH] Add brackets --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 719b077331..a286f6385b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -376,7 +376,7 @@ jobs: matrix: include: - os: ubuntu-latest - generator: "Unix Makefiles" + generator: Unix Makefiles c_compiler: gcc cxx_compiler: g++ std: 20 @@ -392,7 +392,7 @@ jobs: - name: Test doc examples run: | mkdir build && cd build - cmake -G ${{ matrix.generator }} -DCMAKE_CXX_STANDARD=${{ matrix.std }} \ + cmake -G "${{ matrix.generator }}" -DCMAKE_CXX_STANDARD=${{ matrix.std }} \ -DCMAKE_BUILD_TYPE=${{ matrix.build_type}} -DCMAKE_CXX_COMPILER=${{ matrix.cxx_compiler }} \ -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DTBB_TEST=ON -D_TBB_DOC_EXAMPLES=ON .. cmake --build . -v --parallel --target build-doc-examples