fix: Correct CMake argument handling in CI workflow
- Updated the CMake command in the CI workflow to properly reference the CMAKE_ARGS array, ensuring correct argument passing during the build process.
This commit is contained in:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -101,7 +101,7 @@ jobs:
|
||||
"-DCMAKE_CXX_COMPILER=${{ matrix.cxx }}"
|
||||
)
|
||||
fi
|
||||
cmake "${{ CMAKE_ARGS[@] }}"
|
||||
cmake "${CMAKE_ARGS[@]}"
|
||||
|
||||
- name: Build
|
||||
run: cmake --build build --config ${{ env.BUILD_TYPE }} --parallel
|
||||
|
||||
Reference in New Issue
Block a user