2019-12-31 01:20:49 +02:00
name : continuous-integration/gh-actions/gui
2019-11-14 23:06:29 +02:00
on : [ push, pull_request]
jobs :
build-macos :
runs-on : macOS-latest
steps :
2020-01-24 14:16:22 +02:00
- uses : actions/checkout@v1
2020-07-08 02:04:47 +03:00
with :
submodules : recursive
2019-11-14 23:06:29 +02:00
- name : update brew and install dependencies
2020-07-08 02:04:47 +03:00
run : brew update && brew install boost hidapi zmq libpgm miniupnpc ldns expat libunwind-headers protobuf qt5 pkg-config
2019-11-14 23:06:29 +02:00
- name : build
2020-09-22 04:02:09 +03:00
run : USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release -j3
2019-11-20 01:31:25 +02:00
- name : test qml
2020-07-29 21:30:06 +03:00
run : build/release/bin/monero-wallet-gui.app/Contents/MacOS/monero-wallet-gui --test-qml
2019-11-14 23:06:29 +02:00
build-ubuntu :
runs-on : ubuntu-latest
steps :
2020-01-24 14:16:22 +02:00
- uses : actions/checkout@v1
2020-05-27 03:12:40 +03:00
with :
submodules : recursive
2020-01-17 02:57:10 +02:00
- name : remove bundled boost
run : sudo rm -rf /usr/local/share/boost
2020-04-01 01:50:24 +03:00
- name : set apt conf
run : |
echo "Acquire::Retries \"3\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
echo "Acquire::http::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
echo "Acquire::ftp::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
2019-11-14 23:06:29 +02:00
- name : update apt
run : sudo apt update
- name : install monero dependencies
2020-04-16 23:53:33 +03:00
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 libprotobuf-dev protobuf-compiler
2019-11-14 23:06:29 +02:00
- name : install monero gui dependencies
2020-04-06 19:57:32 +03: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 libgcrypt20-dev xvfb
2019-11-14 23:06:29 +02:00
- name : build
2020-09-22 04:02:09 +03:00
run : USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release -j3
2019-11-20 01:31:25 +02:00
- name : test qml
run : xvfb-run -a build/release/bin/monero-wallet-gui --test-qml
2019-12-30 14:33:08 +02:00
build-windows :
runs-on : windows-latest
2020-06-07 21:39:18 +03:00
defaults :
run :
shell : msys2 {0}
2019-12-30 14:33:08 +02:00
steps :
2020-01-24 14:16:22 +02:00
- uses : actions/checkout@v1
2020-05-28 21:04:41 +03:00
with :
submodules : recursive
2020-06-07 21:39:18 +03:00
- uses : eine/setup-msys2@v1
2020-05-22 21:42:37 +03:00
with :
update : true
2020-06-07 21:39:18 +03:00
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
2019-12-30 14:33:08 +02:00
- name : build
2020-09-22 04:02:09 +03:00
run : USE_SINGLE_BUILDDIR=ON DEV_MODE=ON make release-win64 -j2
2019-12-30 14:33:08 +02:00
- name : test qml
2020-06-07 21:39:18 +03:00
run : build/release/bin/monero-wallet-gui --test-qml
2020-09-24 05:40:31 +03:00
docker-linux-static :
runs-on : ubuntu-20.04
steps :
- uses : actions/checkout@v1
with :
submodules : recursive
- name : preprare build enviroment
run : docker build --tag monero:build-env-linux --build-arg THREADS=3 --file Dockerfile.linux .
- name : build
run : docker run --rm -v /home/runner/work/monero-gui/monero-gui:/monero-gui -w /monero-gui monero:build-env-linux sh -c 'USE_SINGLE_BUILDDIR=ON make release-static -j3'
docker-windows-static :
runs-on : ubuntu-20.04
steps :
- uses : actions/checkout@v1
with :
submodules : recursive
- name : preprare build enviroment
run : docker build --tag monero:build-env-windows --build-arg THREADS=3 --file Dockerfile.windows .
- name : build
run : docker run --rm -v /home/runner/work/monero-gui/monero-gui:/monero-gui -w /monero-gui monero:build-env-windows sh -c 'make depends root=/depends target=x86_64-w64-mingw32 tag=win-x64 -j3'