ci: add macos build

This commit is contained in:
tobtoht 2025-03-26 05:58:20 +01:00
parent cdc7918825
commit 1a402d2a05
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -46,3 +46,17 @@ jobs:
run: |
cmake -S . -B build
cmake --build build -j $(nproc)
build-macos:
name: 'macOS (brew)'
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: install dependencies
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install qt libsodium libzip qrencode unbound cmake boost hidapi openssl expat libunwind-headers protobuf pkgconfig
- name: build
run: |
cmake -S . -B build -DWITH_SCANNER=Off
cmake --build build -j $(nproc)