2020-12-10 03:01:43 +00:00
|
|
|
name: ci/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-24 12:16:22 +00:00
|
|
|
- uses: actions/checkout@v1
|
2020-07-07 23:04:47 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-09-29 23:37:46 +00:00
|
|
|
- name: install dependencies
|
2021-10-07 02:33:13 +00:00
|
|
|
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install boost hidapi openssl zmq libpgm libsodium miniupnpc ldns expat libunwind-headers protobuf qt5 pkg-config
|
2019-11-14 21:06:29 +00:00
|
|
|
- name: build
|
2020-09-26 00:15:58 +00:00
|
|
|
run: DEV_MODE=ON make release -j3
|
2019-11-19 23:31:25 +00:00
|
|
|
- name: test qml
|
2020-07-29 18:30:06 +00:00
|
|
|
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-24 12:16:22 +00:00
|
|
|
- uses: actions/checkout@v1
|
2020-05-27 00:12:40 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-01-17 00:57:10 +00:00
|
|
|
- name: remove bundled boost
|
|
|
|
run: sudo rm -rf /usr/local/share/boost
|
2020-03-31 22:50:24 +00: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 21:06:29 +00:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2020-04-16 20:53:33 +00: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 21:06:29 +00:00
|
|
|
- name: install monero gui dependencies
|
2019-07-01 08:42:23 +00:00
|
|
|
run: sudo apt -y install qtbase5-dev qt5-default qtdeclarative5-dev qml-module-qtqml-models2 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-platform qml-module-qt-labs-folderlistmodel qttools5-dev-tools qml-module-qtquick-templates2 libqt5svg5-dev libgcrypt20-dev xvfb
|
2019-11-14 21:06:29 +00:00
|
|
|
- name: build
|
2020-09-26 00:15:58 +00:00
|
|
|
run: DEV_MODE=ON make release -j3
|
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
|
2020-06-07 18:39:18 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: msys2 {0}
|
2019-12-30 12:33:08 +00:00
|
|
|
steps:
|
2020-01-24 12:16:22 +00:00
|
|
|
- uses: actions/checkout@v1
|
2020-05-28 18:04:41 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-11-04 23:32:16 +00:00
|
|
|
- uses: eine/setup-msys2@v2
|
2020-05-22 18:42:37 +00:00
|
|
|
with:
|
|
|
|
update: true
|
2021-09-11 00:24:11 +00: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 mingw-w64-x86_64-unbound git mingw-w64-x86_64-qt5 mingw-w64-x86_64-libgcrypt
|
2019-12-30 12:33:08 +00:00
|
|
|
- name: build
|
2020-09-26 00:15:58 +00:00
|
|
|
run: DEV_MODE=ON make release-win64 -j2
|
2019-12-30 12:33:08 +00:00
|
|
|
- name: test qml
|
2020-06-07 18:39:18 +00:00
|
|
|
run: build/release/bin/monero-wallet-gui --test-qml
|
2020-09-24 02:40:31 +00:00
|
|
|
|
2020-11-12 03:40:31 +00:00
|
|
|
macos-bundle:
|
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: install dependencies
|
2021-10-07 02:33:13 +00:00
|
|
|
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install boost hidapi openssl zmq libpgm miniupnpc ldns expat libunwind-headers protobuf pkg-config python3 p7zip aria2
|
2020-11-12 03:40:31 +00:00
|
|
|
- name: install dependencies
|
2021-05-01 13:35:52 +00:00
|
|
|
run: pip3 install defusedxml
|
2020-11-12 03:40:31 +00:00
|
|
|
- name: download qt
|
2021-05-01 13:35:52 +00:00
|
|
|
run: python3 monero-gui/.github/qt_helper.py mac_x64 desktop 5.15.2 clang_64 c384008156fe63cc183bade0316828c598ff3e5074397c0c9ccc588d6cdc5aca
|
2020-11-12 03:40:31 +00:00
|
|
|
working-directory: ../
|
|
|
|
- name: build
|
|
|
|
run: CMAKE_PREFIX_PATH=/Users/runner/work/monero-gui/5.15.2/clang_64 make release -j3
|
|
|
|
- name: deploy
|
|
|
|
run: make deploy
|
|
|
|
working-directory: build/release
|
2021-04-07 15:42:21 +00:00
|
|
|
- name: test qml
|
|
|
|
run: build/release/bin/monero-wallet-gui.app/Contents/MacOS/monero-wallet-gui --test-qml
|
2020-11-12 03:40:31 +00:00
|
|
|
- name: create .tar
|
|
|
|
run: tar -cf monero-wallet-gui.tar monero-wallet-gui.app
|
|
|
|
working-directory: build/release/bin
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: ${{ github.job }}
|
|
|
|
path: build/release/bin/monero-wallet-gui.tar
|
|
|
|
|
2020-09-24 02:40:31 +00:00
|
|
|
docker-linux-static:
|
2020-09-24 14:46:35 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2020-09-24 02:40:31 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-12-07 18:22:37 +00:00
|
|
|
- uses: satackey/action-docker-layer-caching@v0.0.10
|
2021-05-13 18:02:48 +00:00
|
|
|
if: "!startsWith(github.ref, 'refs/tags/v')"
|
2020-09-24 14:46:35 +00:00
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
key: docker-linux-static-{hash}
|
|
|
|
restore-keys: |
|
|
|
|
docker-linux-static-
|
2021-04-07 15:42:21 +00:00
|
|
|
- name: install dependencies
|
|
|
|
run: sudo apt -y install xvfb libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xkb1 libxkbcommon-x11-0
|
2021-06-02 17:33:22 +00:00
|
|
|
- name: prepare build environment
|
2020-09-24 02:40:31 +00:00
|
|
|
run: docker build --tag monero:build-env-linux --build-arg THREADS=3 --file Dockerfile.linux .
|
|
|
|
- name: build
|
2020-09-26 00:15:58 +00:00
|
|
|
run: docker run --rm -v /home/runner/work/monero-gui/monero-gui:/monero-gui -w /monero-gui monero:build-env-linux sh -c 'make release-static -j3'
|
2020-11-26 09:34:19 +00:00
|
|
|
- name: sha256sum
|
|
|
|
run: shasum -a256 /home/runner/work/monero-gui/monero-gui/build/release/bin/monero-wallet-gui
|
2021-04-07 15:42:21 +00:00
|
|
|
- name: test qml
|
|
|
|
run: xvfb-run -a /home/runner/work/monero-gui/monero-gui/build/release/bin/monero-wallet-gui --test-qml
|
2020-10-30 21:58:22 +00:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: ${{ github.job }}
|
|
|
|
path: |
|
|
|
|
/home/runner/work/monero-gui/monero-gui/build/release/bin/monero-wallet-gui
|
|
|
|
/home/runner/work/monero-gui/monero-gui/build/release/bin/monerod
|
2020-09-24 02:40:31 +00:00
|
|
|
|
|
|
|
docker-windows-static:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-12-07 18:22:37 +00:00
|
|
|
- uses: satackey/action-docker-layer-caching@v0.0.10
|
2021-05-13 18:02:48 +00:00
|
|
|
if: "!startsWith(github.ref, 'refs/tags/v')"
|
2020-09-24 14:46:35 +00:00
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
key: docker-windows-static-{hash}
|
|
|
|
restore-keys: |
|
|
|
|
docker-windows-static-
|
2021-06-02 17:33:22 +00:00
|
|
|
- name: prepare build environment
|
2020-09-24 02:40:31 +00:00
|
|
|
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'
|
2021-01-08 04:33:01 +00:00
|
|
|
- name: sha256sum
|
|
|
|
run: shasum -a256 /home/runner/work/monero-gui/monero-gui/build/x86_64-w64-mingw32/release/bin/monero-wallet-gui.exe
|
2020-10-30 21:58:22 +00:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: ${{ github.job }}
|
|
|
|
path: |
|
|
|
|
/home/runner/work/monero-gui/monero-gui/build/x86_64-w64-mingw32/release/bin/monero-wallet-gui.exe
|
|
|
|
/home/runner/work/monero-gui/monero-gui/build/x86_64-w64-mingw32/release/bin/monerod.exe
|
2020-10-22 03:19:31 +00:00
|
|
|
|
|
|
|
docker-android:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-06-02 17:33:22 +00:00
|
|
|
- name: prepare build environment
|
2020-10-22 03:19:31 +00:00
|
|
|
run: docker build --tag monero:build-env-android --build-arg THREADS=3 --file Dockerfile.android .
|
|
|
|
- name: build
|
|
|
|
run: docker run --rm -v /home/runner/work/monero-gui/monero-gui:/monero-gui -e THREADS=3 monero:build-env-android
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: ${{ github.job }}
|
|
|
|
path: /home/runner/work/monero-gui/monero-gui/build/Android/release/android-build/monero-gui.apk
|
2020-11-25 13:27:59 +00:00
|
|
|
|
|
|
|
source-archive:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: archive
|
|
|
|
run: |
|
|
|
|
pip install git-archive-all
|
|
|
|
export VERSION="monero-gui-$(git describe)"
|
|
|
|
export OUTPUT="$VERSION.tar"
|
|
|
|
echo "OUTPUT=$OUTPUT" >> $GITHUB_ENV
|
|
|
|
/home/runner/.local/bin/git-archive-all --prefix "$VERSION/" --force-submodules "$OUTPUT"
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: ${{ env.OUTPUT }}
|
|
|
|
path: /home/runner/work/monero-gui/monero-gui/${{ env.OUTPUT }}
|