Skip to content

Commit

Permalink
Trying to fix arg quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Feb 26, 2024
1 parent 06d0270 commit 96130c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- os: ubuntu-22.04
cmake_args: "-DCMAKE_CXX_COMPILER=g++-11"
- os: windows-2022
cmake_args: -G"Ninja Multi-Config" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl
cmake_args: -G\"Ninja Multi-Config\" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl
- os: macos-13
cmake_args: "-DCMAKE_BUILD_TYPE=Release"

Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
CMAKE_ARGS: ${{ matrix.cmake_args }}
CONFIGURE_ADD_ONS_FLAG: "${{ github.event_name != 'pull_request' && '-DBYOD_BUILD_ADD_ON_MODULES=ON' || '' }}"
shell: bash
run: cmake -Bbuild $CONFIGURE_ADD_ONS_FLAG $CMAKE_ARGS
run: cmake -Bbuild $CONFIGURE_ADD_ONS_FLAG "$CMAKE_ARGS"

- name: Build
shell: bash
Expand Down

0 comments on commit 96130c9

Please sign in to comment.