2020-12-10 03:12:19 +00:00
|
|
|
name: ci/gh-actions/cli
|
2019-12-30 14:11:58 +00:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2021-04-15 16:48:45 +00:00
|
|
|
# The below variables reduce repetitions across similar targets
|
|
|
|
env:
|
|
|
|
REMOVE_BUNDLED_BOOST : rm -rf /usr/local/share/boost
|
2021-07-13 13:04:50 +00:00
|
|
|
BUILD_DEFAULT_LINUX: |
|
|
|
|
cmake -S . -B build -D ARCH="default" -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release && cmake --build build -j3
|
2021-04-15 16:48:45 +00:00
|
|
|
APT_INSTALL_LINUX: '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 ccache'
|
|
|
|
APT_SET_CONF: |
|
2021-09-09 10:57:24 +00:00
|
|
|
echo "Acquire::Retries \"3\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
|
2021-04-15 16:48:45 +00:00
|
|
|
echo "Acquire::http::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
|
2021-09-09 10:57:24 +00:00
|
|
|
echo "Acquire::ftp::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
|
|
|
|
CCACHE_SETTINGS: |
|
|
|
|
ccache --max-size=150M
|
|
|
|
ccache --set-config=compression=true
|
2021-04-15 16:48:45 +00:00
|
|
|
|
2019-12-30 14:11:58 +00:00
|
|
|
jobs:
|
|
|
|
build-macos:
|
|
|
|
runs-on: macOS-latest
|
2020-05-02 22:29:33 +00:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
2019-12-30 14:11:58 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-05-02 22:29:33 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
2020-12-29 16:58:15 +00:00
|
|
|
path: /Users/runner/Library/Caches/ccache
|
2021-08-12 13:41:54 +00:00
|
|
|
key: ccache-${{ runner.os }}-build-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-build-
|
2020-09-30 00:01:49 +00:00
|
|
|
- name: install dependencies
|
2021-09-30 20:09:34 +00:00
|
|
|
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install boost hidapi openssl zmq libpgm miniupnpc ldns expat libunwind-headers protobuf ccache
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: build
|
2020-05-02 22:29:33 +00:00
|
|
|
run: |
|
2021-09-09 10:57:24 +00:00
|
|
|
${{env.CCACHE_SETTINGS}}
|
2020-05-02 22:29:33 +00:00
|
|
|
make -j3
|
2019-12-30 14:11:58 +00:00
|
|
|
|
|
|
|
build-windows:
|
|
|
|
runs-on: windows-latest
|
2021-02-13 19:03:14 +00:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: C:\Users\runneradmin\.ccache-temp
|
|
|
|
CCACHE_DIR: C:\Users\runneradmin\.ccache
|
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-02-13 19:03:14 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: C:\Users\runneradmin\.ccache
|
2021-08-12 13:41:54 +00:00
|
|
|
key: ccache-${{ runner.os }}-build-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-build-
|
2020-11-05 00:26:19 +00:00
|
|
|
- uses: eine/setup-msys2@v2
|
2020-05-23 00:30:09 +00:00
|
|
|
with:
|
|
|
|
update: true
|
2021-07-07 00:51:14 +00:00
|
|
|
install: mingw-w64-x86_64-toolchain make mingw-w64-x86_64-cmake mingw-w64-x86_64-ccache 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
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: build
|
2021-02-13 19:03:14 +00:00
|
|
|
run: |
|
2021-09-09 10:57:24 +00:00
|
|
|
${{env.CCACHE_SETTINGS}}
|
2021-02-13 19:03:14 +00:00
|
|
|
make release-static-win64 -j2
|
2019-12-30 14:11:58 +00:00
|
|
|
|
2021-07-04 05:14:35 +00:00
|
|
|
# See the OS labels and monitor deprecations here:
|
|
|
|
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
|
|
|
|
|
2019-12-30 14:11:58 +00:00
|
|
|
build-ubuntu:
|
2021-07-04 05:14:35 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-05-02 22:29:33 +00:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
2021-07-04 05:14:35 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, ubuntu-18.04]
|
2019-12-30 14:11:58 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-05-02 22:29:33 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.ccache
|
2021-08-12 13:41:54 +00:00
|
|
|
key: ccache-${{ runner.os }}-build-${{ matrix.os }}-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-build-${{ matrix.os }}
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: remove bundled boost
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
2020-03-31 21:42:18 +00:00
|
|
|
- name: set apt conf
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.APT_SET_CONF}}
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: build
|
2021-09-09 10:57:24 +00:00
|
|
|
run: |
|
|
|
|
${{env.CCACHE_SETTINGS}}
|
|
|
|
${{env.BUILD_DEFAULT_LINUX}}
|
2019-12-30 14:11:58 +00:00
|
|
|
|
2020-02-01 23:51:37 +00:00
|
|
|
libwallet-ubuntu:
|
|
|
|
runs-on: ubuntu-latest
|
2020-05-02 22:29:33 +00:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
2020-02-01 23:51:37 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2020-05-02 22:29:33 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.ccache
|
2021-08-12 13:41:54 +00:00
|
|
|
key: ccache-${{ runner.os }}-libwallet-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-libwallet-
|
2020-02-01 23:51:37 +00:00
|
|
|
- name: remove bundled boost
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
2020-03-31 21:42:18 +00:00
|
|
|
- name: set apt conf
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.APT_SET_CONF}}
|
2020-02-01 23:51:37 +00:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
2020-02-01 23:51:37 +00:00
|
|
|
- name: build
|
2020-05-02 22:29:33 +00:00
|
|
|
run: |
|
2021-09-09 10:57:24 +00:00
|
|
|
${{env.CCACHE_SETTINGS}}
|
2021-07-08 02:59:25 +00:00
|
|
|
cmake .
|
|
|
|
make wallet_api -j3
|
2020-02-01 23:51:37 +00:00
|
|
|
|
2019-12-30 14:11:58 +00:00
|
|
|
test-ubuntu:
|
|
|
|
needs: build-ubuntu
|
|
|
|
runs-on: ubuntu-latest
|
2021-03-09 16:11:33 +00:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
2019-12-30 14:11:58 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-03-09 16:11:33 +00:00
|
|
|
- name: ccache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.ccache
|
2021-08-12 13:41:54 +00:00
|
|
|
key: ccache-${{ runner.os }}-build-ubuntu-latest-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-build-ubuntu-latest
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: remove bundled boost
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
2020-03-31 21:42:18 +00:00
|
|
|
- name: set apt conf
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.APT_SET_CONF}}
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2021-04-15 16:48:45 +00:00
|
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
2021-02-18 22:30:41 +00:00
|
|
|
- name: install Python dependencies
|
|
|
|
run: pip install requests psutil monotonic
|
2019-12-30 14:11:58 +00:00
|
|
|
- name: tests
|
2020-02-20 00:46:40 +00:00
|
|
|
env:
|
|
|
|
CTEST_OUTPUT_ON_FAILURE: ON
|
2021-03-09 16:11:33 +00:00
|
|
|
run: |
|
2021-09-09 10:57:24 +00:00
|
|
|
${{env.CCACHE_SETTINGS}}
|
2021-07-13 13:04:50 +00:00
|
|
|
${{env.BUILD_DEFAULT_LINUX}}
|
|
|
|
cmake --build build --target test
|
2021-03-09 16:11:33 +00:00
|
|
|
|
|
|
|
# ARCH="default" (not "native") ensures, that a different execution host can execute binaries compiled elsewhere.
|
|
|
|
# BUILD_SHARED_LIBS=ON speeds up the linkage part a bit, reduces size, and is the only place where the dynamic linkage is tested.
|
|
|
|
|
2021-04-19 05:31:16 +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-$(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/monero/${{ env.OUTPUT }}
|