diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2023-09-14 22:25:08 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2023-09-14 22:25:08 -0500 |
| commit | 5a1a349977a77447acf44e56836dd4824f691f6b (patch) | |
| tree | a6bf2919aeef98589a9fc9618565a5bbe3d59712 /.github | |
| parent | 5683f76cd0df6fd037c3ef03bd9fc8eefc203084 (diff) | |
| parent | a9e0affe59dfc34238d66a6b456da61f70cca092 (diff) | |
| download | monzero-gui-5a1a349977a77447acf44e56836dd4824f691f6b.tar.gz monzero-gui-5a1a349977a77447acf44e56836dd4824f691f6b.tar.xz monzero-gui-5a1a349977a77447acf44e56836dd4824f691f6b.zip | |
Merge pull request #4155
a9e0aff workflows: set default arch for macOS bundle (selsta)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 13 |
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 |
