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:
scawful
2025-10-08 22:12:50 -04:00
parent b29a0820ff
commit d2dab43358

View File

@@ -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