2019-12-30 14:11:58 +00:00
|
|
|
name: continuous-integration/gh-actions/cli
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-macos:
|
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: update brew and install dependencies
|
2020-02-25 21:51:50 +00:00
|
|
|
run: brew update && brew install boost hidapi zmq libpgm miniupnpc ldns expat libunwind-headers protobuf
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: build
|
|
|
|
run: make -j3
|
|
|
|
|
|
|
|
build-windows:
|
|
|
|
runs-on: windows-latest
|
2020-06-07 18:46:23 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: msys2 {0}
|
2019-12-30 14:11:58 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-04-27 12:45:06 +00:00
|
|
|
- uses: msys2/setup-msys2@v2
|
2020-05-23 00:30:09 +00:00
|
|
|
with:
|
|
|
|
update: true
|
2020-06-07 18:46:23 +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 git
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: build
|
2020-06-07 18:46:23 +00:00
|
|
|
run: make release-static-win64 -j2
|
2019-12-30 14:11:58 +00:00
|
|
|
|
|
|
|
build-ubuntu:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: remove bundled boost
|
|
|
|
run: sudo rm -rf /usr/local/share/boost
|
2020-03-31 21:42:18 +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-12-30 14:11:58 +00:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2020-04-16 20:58:53 +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-12-30 14:11:58 +00:00
|
|
|
- name: build
|
|
|
|
run: make -j3
|
|
|
|
|
2020-02-01 23:51:37 +00:00
|
|
|
libwallet-ubuntu:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: remove bundled boost
|
|
|
|
run: sudo rm -rf /usr/local/share/boost
|
2020-03-31 21:42:18 +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
|
2020-02-01 23:51:37 +00:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2020-04-16 20:58:53 +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
|
2020-02-01 23:51:37 +00:00
|
|
|
- name: build
|
|
|
|
run: cmake -DBUILD_GUI_DEPS=ON && make -j3
|
|
|
|
|
2019-12-30 14:11:58 +00:00
|
|
|
test-ubuntu:
|
|
|
|
needs: build-ubuntu
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: remove bundled boost
|
|
|
|
run: sudo rm -rf /usr/local/share/boost
|
2020-03-31 21:42:18 +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-12-30 14:11:58 +00:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2020-04-16 20:58:53 +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-12-30 14:11:58 +00:00
|
|
|
- name: install requests
|
|
|
|
run: pip install requests
|
|
|
|
- name: tests
|
2020-02-20 00:46:40 +00:00
|
|
|
env:
|
|
|
|
CTEST_OUTPUT_ON_FAILURE: ON
|
2019-12-30 14:11:58 +00:00
|
|
|
run: make release-test -j3
|