mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
workflows: add windows support
This commit is contained in:
parent
43f378b7d2
commit
c98ffcca5d
1 changed files with 16 additions and 0 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -32,3 +32,19 @@ jobs:
|
||||||
run: ./build.sh
|
run: ./build.sh
|
||||||
- name: test qml
|
- name: test qml
|
||||||
run: xvfb-run -a build/release/bin/monero-wallet-gui --test-qml
|
run: xvfb-run -a build/release/bin/monero-wallet-gui --test-qml
|
||||||
|
|
||||||
|
build-windows:
|
||||||
|
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- uses: numworks/setup-msys2@v1
|
||||||
|
- name: update pacman
|
||||||
|
run: msys2do pacman -Syu --noconfirm
|
||||||
|
- 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
|
||||||
|
- name: build
|
||||||
|
run: msys2do ./build.sh release
|
||||||
|
- name: test qml
|
||||||
|
run: msys2do build/release/bin/monero-wallet-gui --test-qml
|
||||||
|
|
Loading…
Reference in a new issue