Skip to content

Switch macOS CI to aqt Qt install to avoid Homebrew cmake tap conflic… #6

Switch macOS CI to aqt Qt install to avoid Homebrew cmake tap conflic…

Switch macOS CI to aqt Qt install to avoid Homebrew cmake tap conflic… #6

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
brew update
brew install cmake ninja qt@6
echo "Qt installed at $(brew --prefix qt@6)"
- name: Configure
run: |
mkdir build
cd build
cmake .. \
-G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_PREFIX_PATH=$(brew --prefix qt@6)
- name: Build
run: |
cd build
ninja -v