Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/prebuilds-qvac-lib-infer-llamacpp-llm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,20 @@ jobs:
run: |
bare-make generate --platform ${{ matrix.platform }} --arch ${{ matrix.arch }} ${{ matrix.flags }} $CFG_OPTS

- if: ${{ matrix.platform == 'darwin' }}
name: Verify CXX compiler (macOS)
shell: bash
working-directory: ${{ env.WORKDIR }}
run: |
set -u
CXX_COMPILER_FILE="$(ls -1 build/CMakeFiles/*/CMakeCXXCompiler.cmake 2>/dev/null | head -n 1)"
if [ -z "${CXX_COMPILER_FILE:-}" ]; then
echo "CMakeCXXCompiler.cmake not found under build/CMakeFiles"
exit 0
fi
echo "CMakeCXXCompiler.cmake: $CXX_COMPILER_FILE"
grep -E 'set\(CMAKE_CXX_COMPILER(_ID)? ' "$CXX_COMPILER_FILE" || true

- name: Run bare-make build
working-directory: ${{ env.WORKDIR }}
run: bare-make build
Expand Down