]> Nutra Git (v2) - gamesguru/feather.git/commitdiff
ci: add macos build
authortobtoht <tob@featherwallet.org>
Wed, 26 Mar 2025 04:58:20 +0000 (05:58 +0100)
committertobtoht <tob@featherwallet.org>
Wed, 26 Mar 2025 05:08:36 +0000 (06:08 +0100)
.github/workflows/build.yml

index c7e368ac0fe8809e15353d46486c69d736250a3c..330aca5e380d582a5cea35d8260a8d45c6265a55 100644 (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)