mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-03 09:29:37 +00:00
Actions: macos-qt6
This commit is contained in:
parent
ef5f831013
commit
cbc3fb1fdd
1 changed files with 20 additions and 0 deletions
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
|
@ -99,3 +99,23 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: ${{ github.job }}
|
name: ${{ github.job }}
|
||||||
path: build/bin/feather.tar
|
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 }}
|
||||||
|
path: build/bin/feather.tar
|
Loading…
Reference in a new issue