mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
workflows: build and upload macOS bundle
This commit is contained in:
parent
158e0c3523
commit
45bfcfd2e9
1 changed files with 29 additions and 0 deletions
29
.github/workflows/build.yml
vendored
29
.github/workflows/build.yml
vendored
|
@ -58,6 +58,35 @@ jobs:
|
||||||
- name: test qml
|
- name: test qml
|
||||||
run: build/release/bin/monero-wallet-gui --test-qml
|
run: build/release/bin/monero-wallet-gui --test-qml
|
||||||
|
|
||||||
|
macos-bundle:
|
||||||
|
runs-on: macOS-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: install dependencies
|
||||||
|
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install boost hidapi zmq libpgm miniupnpc ldns expat libunwind-headers protobuf pkg-config python3 p7zip
|
||||||
|
- name: install dependencies
|
||||||
|
run: pip3 install requests semantic_version lxml
|
||||||
|
- name: download qt
|
||||||
|
run: |
|
||||||
|
curl -O https://raw.githubusercontent.com/engnr/qt-downloader/master/qt-downloader
|
||||||
|
chmod +x qt-downloader
|
||||||
|
./qt-downloader macos desktop 5.15.2 clang_64
|
||||||
|
working-directory: ../
|
||||||
|
- name: build
|
||||||
|
run: CMAKE_PREFIX_PATH=/Users/runner/work/monero-gui/5.15.2/clang_64 make release -j3
|
||||||
|
- name: deploy
|
||||||
|
run: make deploy
|
||||||
|
working-directory: build/release
|
||||||
|
- name: create .tar
|
||||||
|
run: tar -cf monero-wallet-gui.tar monero-wallet-gui.app
|
||||||
|
working-directory: build/release/bin
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: ${{ github.job }}
|
||||||
|
path: build/release/bin/monero-wallet-gui.tar
|
||||||
|
|
||||||
docker-linux-static:
|
docker-linux-static:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue