diff options
| author | xiphon <xiphon@protonmail.com> | 2020-05-28 18:04:41 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-06-04 00:30:47 +0000 |
| commit | 7f0c19950b77a21bd5d17e2b3a60c964b4e22e7b (patch) | |
| tree | 5d78cd7ee3e8f39f8649b4d2fb7bb9b7db4b9585 /.github | |
| parent | c8f4355e15e6574c7139bfb5f6ea195ad4199644 (diff) | |
| download | monzero-gui-7f0c19950b77a21bd5d17e2b3a60c964b4e22e7b.tar.gz monzero-gui-7f0c19950b77a21bd5d17e2b3a60c964b4e22e7b.tar.xz monzero-gui-7f0c19950b77a21bd5d17e2b3a60c964b4e22e7b.zip | |
workflows: Windows CMake 'release-win64' target CI
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f0fe67c..5ee03506 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: - name: "qmake" cmd: "./build.sh" - name: "cmake" - cmd: "USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release" + cmd: "USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release -j3" name: build-ubuntu-${{ matrix.toolchain.name }} steps: @@ -54,9 +54,20 @@ jobs: build-windows: runs-on: windows-latest + strategy: + fail-fast: false + matrix: + toolchain: + - name: "qmake" + cmd: "./build.sh release" + - name: "cmake" + cmd: "USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release-win64 -j2" + name: build-windows-${{ matrix.toolchain.name }} steps: - uses: actions/checkout@v1 + with: + submodules: recursive - uses: eine/setup-msys2@v0 with: update: true @@ -65,6 +76,6 @@ jobs: - name: disable qtquickcompiler run: msys2do sed -i s/CONFIG\ +=\ qtquickcompiler// monero-wallet-gui.pro - name: build - run: msys2do ./build.sh release + run: msys2do ${{ matrix.toolchain.cmd }} - name: test qml run: msys2do build/release/bin/monero-wallet-gui --test-qml |
