From d1bde4f8b2fbfe2ed7b0481d53909c7bad49d13e Mon Sep 17 00:00:00 2001 From: selsta Date: Wed, 29 Jul 2020 20:30:06 +0200 Subject: [PATCH] workflows: fix mac cmake --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 096b560f..af6cf0b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,8 @@ jobs: toolchain: - name: "qmake" cmd: "export PATH=$PATH:/usr/local/opt/qt/bin && ./build.sh" - output: build/release/bin/monero-wallet-gui.app/Contents/MacOS/monero-wallet-gui - name: "cmake" cmd: "USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release -j3" - output: build/release/bin/monero-wallet-gui name: build-macos-${{ matrix.toolchain.name }} steps: @@ -27,7 +25,7 @@ jobs: - name: build run: ${{ matrix.toolchain.cmd }} - name: test qml - run: ${{ matrix.toolchain.output }} --test-qml + run: build/release/bin/monero-wallet-gui.app/Contents/MacOS/monero-wallet-gui --test-qml build-ubuntu: