2019-12-30 23:20:49 +00:00
|
|
|
name: continuous-integration/gh-actions/gui
|
2019-11-14 21:06:29 +00:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-macos:
|
|
|
|
|
|
|
|
runs-on: macOS-latest
|
|
|
|
|
|
|
|
steps:
|
2020-01-17 00:56:25 +00:00
|
|
|
- uses: actions/checkout@v2
|
2019-11-14 21:06:29 +00:00
|
|
|
- name: update brew and install dependencies
|
2019-12-30 10:03:05 +00:00
|
|
|
run: brew update && brew install boost hidapi zmq libpgm unbound libsodium miniupnpc ldns expat libunwind-headers protobuf qt5
|
2019-11-14 21:06:29 +00:00
|
|
|
- name: build
|
|
|
|
run: export PATH=$PATH:/usr/local/opt/qt/bin && ./build.sh
|
2019-11-19 23:31:25 +00:00
|
|
|
- name: test qml
|
|
|
|
run: build/release/bin/monero-wallet-gui.app/Contents/MacOS/monero-wallet-gui --test-qml
|
2019-11-14 21:06:29 +00:00
|
|
|
|
|
|
|
build-ubuntu:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-01-17 00:56:25 +00:00
|
|
|
- uses: actions/checkout@v2
|
2019-11-14 21:06:29 +00:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
|
|
|
run: sudo apt -y install build-essential cmake libboost-all-dev miniupnpc libunbound-dev graphviz doxygen libunwind8-dev pkg-config libssl-dev libzmq3-dev libsodium-dev libhidapi-dev libnorm-dev libusb-1.0-0-dev libpgm-dev
|
|
|
|
- name: install monero gui dependencies
|
2019-11-19 23:31:25 +00:00
|
|
|
run: sudo apt -y install qtbase5-dev qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-controls2 qml-module-qtquick-dialogs qml-module-qtquick-xmllistmodel qml-module-qt-labs-settings qml-module-qt-labs-folderlistmodel qttools5-dev-tools qml-module-qtquick-templates2 libqt5svg5-dev xvfb
|
2019-11-14 21:06:29 +00:00
|
|
|
- name: build
|
|
|
|
run: ./build.sh
|
2019-11-19 23:31:25 +00:00
|
|
|
- name: test qml
|
|
|
|
run: xvfb-run -a build/release/bin/monero-wallet-gui --test-qml
|
2019-12-30 12:33:08 +00:00
|
|
|
|
|
|
|
build-windows:
|
|
|
|
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2020-01-17 00:56:25 +00:00
|
|
|
- uses: actions/checkout@v2
|
2019-12-30 12:33:08 +00:00
|
|
|
- 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
|