aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2023-04-17 19:24:56 +0200
committerselsta <selsta@sent.at>2023-04-17 21:47:30 +0200
commita9e0affe59dfc34238d66a6b456da61f70cca092 (patch)
tree456b20d40063b2d53dc59c6c59afdfd203d578b5 /.github
parentf650e963630f49b44a2ef16211f565555b9f159e (diff)
downloadmonzero-gui-a9e0affe59dfc34238d66a6b456da61f70cca092.tar.gz
monzero-gui-a9e0affe59dfc34238d66a6b456da61f70cca092.tar.xz
monzero-gui-a9e0affe59dfc34238d66a6b456da61f70cca092.zip
workflows: set default arch for macOS bundle
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml13
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index adcca820..770b6043 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -75,19 +75,22 @@ jobs:
run: python3 monero-gui/.github/qt_helper.py mac_x64 desktop 5.15.2 clang_64 c384008156fe63cc183bade0316828c598ff3e5074397c0c9ccc588d6cdc5aca
working-directory: ../
- name: build
- run: CMAKE_PREFIX_PATH=/Users/runner/work/monero-gui/5.15.2/clang_64 make release -j3
+ run: |
+ mkdir build && cd build
+ cmake -D CMAKE_BUILD_TYPE=Release -D ARCH=default -D CMAKE_PREFIX_PATH=/Users/runner/work/monero-gui/5.15.2/clang_64 ..
+ make
- name: deploy
run: make deploy
- working-directory: build/release
+ working-directory: build
- name: test qml
- run: build/release/bin/monero-wallet-gui.app/Contents/MacOS/monero-wallet-gui --test-qml
+ run: build/bin/monero-wallet-gui.app/Contents/MacOS/monero-wallet-gui --test-qml
- name: create .tar
run: tar -cf monero-wallet-gui.tar monero-wallet-gui.app
- working-directory: build/release/bin
+ working-directory: build/bin
- uses: actions/upload-artifact@v2
with:
name: ${{ github.job }}
- path: build/release/bin/monero-wallet-gui.tar
+ path: build/bin/monero-wallet-gui.tar
docker-linux-static:
runs-on: ubuntu-20.04