diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-05-26 15:40:24 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-26 15:40:24 -0500 |
| commit | b15dbbb9b09a660a810bcf1fdddba97e97407ea2 (patch) | |
| tree | f0c7d0c85f7f00d1fabd01dd77b537cd8f50b31d | |
| parent | a73a4363ec120ab6b47e22cc0e9b9ec8e0312a49 (diff) | |
| parent | 55cbc562b68e03a6891a2d57315ae22821cac672 (diff) | |
| download | monzero-gui-b15dbbb9b09a660a810bcf1fdddba97e97407ea2.tar.gz monzero-gui-b15dbbb9b09a660a810bcf1fdddba97e97407ea2.tar.xz monzero-gui-b15dbbb9b09a660a810bcf1fdddba97e97407ea2.zip | |
Merge pull request #2921
55cbc56 workflows: fix windows build (selsta)
| -rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1888c0cd..5f58f66e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,11 +46,13 @@ jobs: steps: - uses: actions/checkout@v1 - - uses: numworks/setup-msys2@v1 - - name: update pacman - run: msys2do pacman -Syu --noconfirm + - uses: eine/setup-msys2@v0 + with: + update: true - name: install monero dependencies run: msys2do pacman -S --noconfirm mingw-w64-x86_64-toolchain make mingw-w64-x86_64-cmake mingw-w64-x86_64-boost mingw-w64-x86_64-openssl mingw-w64-x86_64-zeromq mingw-w64-x86_64-libsodium mingw-w64-x86_64-hidapi mingw-w64-x86_64-protobuf-c mingw-w64-x86_64-libusb git mingw-w64-x86_64-qt5 mingw-w64-x86_64-libgcrypt + - name: disable qtquickcompiler + run: msys2do sed -i s/CONFIG\ +=\ qtquickcompiler// monero-wallet-gui.pro - name: build run: msys2do ./build.sh release - name: test qml |
