mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-03 09:29:38 +00:00
workflows: update msys2 setup action v0 -> v1
This commit is contained in:
parent
7deecbfdf6
commit
c6d5c5dc3a
1 changed files with 9 additions and 7 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -63,19 +63,21 @@ jobs:
|
||||||
- name: "cmake"
|
- name: "cmake"
|
||||||
cmd: "USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release-win64 -j2"
|
cmd: "USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release-win64 -j2"
|
||||||
name: build-windows-${{ matrix.toolchain.name }}
|
name: build-windows-${{ matrix.toolchain.name }}
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: msys2 {0}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- uses: eine/setup-msys2@v0
|
- uses: eine/setup-msys2@v1
|
||||||
with:
|
with:
|
||||||
update: true
|
update: true
|
||||||
- name: install monero dependencies
|
install: 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
|
||||||
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
|
- name: build
|
||||||
run: msys2do ${{ matrix.toolchain.cmd }}
|
run: |
|
||||||
|
sed -i 's/CONFIG\ +=\ qtquickcompiler//' monero-wallet-gui.pro
|
||||||
|
${{ matrix.toolchain.cmd }}
|
||||||
- name: test qml
|
- name: test qml
|
||||||
run: msys2do build/release/bin/monero-wallet-gui --test-qml
|
run: build/release/bin/monero-wallet-gui --test-qml
|
||||||
|
|
Loading…
Reference in a new issue