From aff13e6b7998a745ec9d1f6b85f7d694db644ce1 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Mon, 23 May 2022 18:14:59 +0200 Subject: [PATCH] Actions: add macos --- .github/workflows/build.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ca4cf92..d8bf349 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,4 +78,15 @@ jobs: with: name: ${{ github.job }} path: | - /home/runner/work/feather/feather/build/release/bin/feather.exe \ No newline at end of file + /home/runner/work/feather/feather/build/release/bin/feather.exe + + macos: + runs-on: macOS-latest + steps: + - uses: actions/checkout@v1 + with: + submodules: recursive + - name: install dependencies + run: HOMEBREW_NO_AUTO_UPDATE=1 brew install qt@5 libsodium libzip qrencode unbound cmake boost hidapi openssl expat libunwind-headers protobuf pkg-config + - name: build + run: CMAKE_PREFIX_PATH=/opt/homebrew/opt/qt@5/ make mac-release -j3