Actions: macos-qt6

This commit is contained in:
tobtoht 2022-05-27 15:02:21 +02:00
parent ef5f831013
commit cbc3fb1fdd
No known key found for this signature in database
GPG Key ID: 1CADD27F41F45C3C
1 changed files with 20 additions and 0 deletions

View File

@ -95,6 +95,26 @@ jobs:
- name: create .tar
run: tar -cf feather.tar feather.app
working-directory: build/bin
- uses: actions/upload-artifact@v2
with:
name: ${{ github.job }}
path: build/bin/feather.tar
macos-qt6:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
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 zbar
- name: install polyseed
run: git clone https://github.com/tevador/polyseed.git && cd polyseed && git reset --hard e38516561c647522e2e2608f13eabdeab61d9a5d && cmake . && make && make install
- name: build
run: make mac-release -j3
- name: create .tar
run: tar -cf feather.tar feather.app
working-directory: build/bin
- uses: actions/upload-artifact@v2
with:
name: ${{ github.job }}