mirror of
https://github.com/feather-wallet/feather.git
synced 2025-04-04 04:29:02 +00:00
ci: add macos build
This commit is contained in:
parent
cdc7918825
commit
1a402d2a05
1 changed files with 14 additions and 0 deletions
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue