2020-12-09 20:12:19 -07:00
|
|
|
name: ci/gh-actions/cli
|
2019-12-30 07:11:58 -07:00
|
|
|
|
2021-04-20 03:47:21 -06:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**/README.md'
|
2019-12-30 07:11:58 -07:00
|
|
|
|
2021-04-15 10:48:45 -06:00
|
|
|
# The below variables reduce repetitions across similar targets
|
|
|
|
env:
|
|
|
|
REMOVE_BUNDLED_BOOST : rm -rf /usr/local/share/boost
|
2021-07-13 07:04:50 -06:00
|
|
|
BUILD_DEFAULT_LINUX: |
|
2022-04-08 10:22:48 -06:00
|
|
|
cmake -S . -B build -D ARCH="default" -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=Release && cmake --build build -j3
|
2021-04-15 10:48:45 -06: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 04:57:24 -06:00
|
|
|
echo "Acquire::Retries \"3\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
|
2021-04-15 10:48:45 -06:00
|
|
|
echo "Acquire::http::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
|
2021-09-09 04:57:24 -06: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 10:48:45 -06:00
|
|
|
|
2019-12-30 07:11:58 -07:00
|
|
|
jobs:
|
|
|
|
build-macos:
|
|
|
|
runs-on: macOS-latest
|
2020-05-02 16:29:33 -06:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
2019-12-30 07:11:58 -07:00
|
|
|
steps:
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-30 07:11:58 -07:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/cache@v3
|
2020-05-02 16:29:33 -06:00
|
|
|
with:
|
2020-12-29 09:58:15 -07:00
|
|
|
path: /Users/runner/Library/Caches/ccache
|
2021-08-12 07:41:54 -06:00
|
|
|
key: ccache-${{ runner.os }}-build-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-build-
|
2020-09-29 18:01:49 -06:00
|
|
|
- name: install dependencies
|
2022-08-10 16:20:25 -06:00
|
|
|
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install boost hidapi openssl zmq libpgm miniupnpc expat libunwind-headers protobuf ccache
|
2019-12-30 07:11:58 -07:00
|
|
|
- name: build
|
2020-05-02 16:29:33 -06:00
|
|
|
run: |
|
2021-09-09 04:57:24 -06:00
|
|
|
${{env.CCACHE_SETTINGS}}
|
2020-05-02 16:29:33 -06:00
|
|
|
make -j3
|
2019-12-30 07:11:58 -07:00
|
|
|
|
|
|
|
build-windows:
|
|
|
|
runs-on: windows-latest
|
2021-02-13 12:03:14 -07:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: C:\Users\runneradmin\.ccache-temp
|
|
|
|
CCACHE_DIR: C:\Users\runneradmin\.ccache
|
2020-06-07 12:46:23 -06:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: msys2 {0}
|
2019-12-30 07:11:58 -07:00
|
|
|
steps:
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-30 07:11:58 -07:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/cache@v3
|
2021-02-13 12:03:14 -07:00
|
|
|
with:
|
|
|
|
path: C:\Users\runneradmin\.ccache
|
2021-08-12 07:41:54 -06:00
|
|
|
key: ccache-${{ runner.os }}-build-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-build-
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: msys2/setup-msys2@v2
|
2020-05-22 18:30:09 -06:00
|
|
|
with:
|
|
|
|
update: true
|
2021-07-06 18:51:14 -06: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 07:11:58 -07:00
|
|
|
- name: build
|
2021-02-13 12:03:14 -07:00
|
|
|
run: |
|
2021-09-09 04:57:24 -06:00
|
|
|
${{env.CCACHE_SETTINGS}}
|
2021-02-13 12:03:14 -07:00
|
|
|
make release-static-win64 -j2
|
2019-12-30 07:11:58 -07:00
|
|
|
|
2021-07-03 23:14:35 -06: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 07:11:58 -07:00
|
|
|
build-ubuntu:
|
2021-07-03 23:14:35 -06:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-05-02 16:29:33 -06:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
2021-07-03 23:14:35 -06:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-09-24 13:02:41 -06:00
|
|
|
os: [ubuntu-22.04, ubuntu-20.04]
|
2019-12-30 07:11:58 -07:00
|
|
|
steps:
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-30 07:11:58 -07:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/cache@v3
|
2020-05-02 16:29:33 -06:00
|
|
|
with:
|
|
|
|
path: ~/.ccache
|
2021-08-12 07:41:54 -06:00
|
|
|
key: ccache-${{ runner.os }}-build-${{ matrix.os }}-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-build-${{ matrix.os }}
|
2019-12-30 07:11:58 -07:00
|
|
|
- name: remove bundled boost
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
2020-03-31 15:42:18 -06:00
|
|
|
- name: set apt conf
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.APT_SET_CONF}}
|
2019-12-30 07:11:58 -07:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
2019-12-30 07:11:58 -07:00
|
|
|
- name: build
|
2021-09-09 04:57:24 -06:00
|
|
|
run: |
|
|
|
|
${{env.CCACHE_SETTINGS}}
|
|
|
|
${{env.BUILD_DEFAULT_LINUX}}
|
2019-12-30 07:11:58 -07:00
|
|
|
|
2020-02-01 16:51:37 -07:00
|
|
|
libwallet-ubuntu:
|
2022-09-24 13:02:41 -06:00
|
|
|
runs-on: ubuntu-20.04
|
2020-05-02 16:29:33 -06:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
2020-02-01 16:51:37 -07:00
|
|
|
steps:
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-02-01 16:51:37 -07:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/cache@v3
|
2020-05-02 16:29:33 -06:00
|
|
|
with:
|
|
|
|
path: ~/.ccache
|
2021-08-12 07:41:54 -06:00
|
|
|
key: ccache-${{ runner.os }}-libwallet-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-libwallet-
|
2020-02-01 16:51:37 -07:00
|
|
|
- name: remove bundled boost
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
2020-03-31 15:42:18 -06:00
|
|
|
- name: set apt conf
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.APT_SET_CONF}}
|
2020-02-01 16:51:37 -07:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
2020-02-01 16:51:37 -07:00
|
|
|
- name: build
|
2020-05-02 16:29:33 -06:00
|
|
|
run: |
|
2021-09-09 04:57:24 -06:00
|
|
|
${{env.CCACHE_SETTINGS}}
|
2021-07-07 20:59:25 -06:00
|
|
|
cmake .
|
|
|
|
make wallet_api -j3
|
2020-02-01 16:51:37 -07:00
|
|
|
|
2019-12-30 07:11:58 -07:00
|
|
|
test-ubuntu:
|
|
|
|
needs: build-ubuntu
|
2022-09-24 13:02:41 -06:00
|
|
|
runs-on: ubuntu-20.04
|
2021-03-09 09:11:33 -07:00
|
|
|
env:
|
|
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
2019-12-30 07:11:58 -07:00
|
|
|
steps:
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-30 07:11:58 -07:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-03-09 09:11:33 -07:00
|
|
|
- name: ccache
|
2023-02-19 10:33:18 -07:00
|
|
|
uses: actions/cache@v3
|
2021-03-09 09:11:33 -07:00
|
|
|
with:
|
|
|
|
path: ~/.ccache
|
2021-08-12 07:41:54 -06:00
|
|
|
key: ccache-${{ runner.os }}-build-ubuntu-latest-${{ github.sha }}
|
|
|
|
restore-keys: ccache-${{ runner.os }}-build-ubuntu-latest
|
2019-12-30 07:11:58 -07:00
|
|
|
- name: remove bundled boost
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
2020-03-31 15:42:18 -06:00
|
|
|
- name: set apt conf
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.APT_SET_CONF}}
|
2019-12-30 07:11:58 -07:00
|
|
|
- name: update apt
|
|
|
|
run: sudo apt update
|
|
|
|
- name: install monero dependencies
|
2021-04-15 10:48:45 -06:00
|
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
2021-02-18 15:30:41 -07:00
|
|
|
- name: install Python dependencies
|
2022-09-09 20:34:18 -06:00
|
|
|
run: pip install requests psutil monotonic zmq deepdiff
|
2019-12-30 07:11:58 -07:00
|
|
|
- name: tests
|
2020-02-19 17:46:40 -07:00
|
|
|
env:
|
|
|
|
CTEST_OUTPUT_ON_FAILURE: ON
|
2022-11-28 03:37:33 -07:00
|
|
|
DNS_PUBLIC: tcp://9.9.9.9
|
2021-03-09 09:11:33 -07:00
|
|
|
run: |
|
2021-09-09 04:57:24 -06:00
|
|
|
${{env.CCACHE_SETTINGS}}
|
2021-07-13 07:04:50 -06:00
|
|
|
${{env.BUILD_DEFAULT_LINUX}}
|
|
|
|
cmake --build build --target test
|
2021-03-09 09:11:33 -07: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-18 23:31:16 -06:00
|
|
|
source-archive:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-18 23:31:16 -06:00
|
|
|
with:
|
2023-02-19 10:33:18 -07:00
|
|
|
fetch-depth: 0
|
2021-04-18 23:31:16 -06:00
|
|
|
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"
|
2023-02-19 10:33:18 -07:00
|
|
|
- uses: actions/upload-artifact@v3
|
2021-04-18 23:31:16 -06:00
|
|
|
with:
|
|
|
|
name: ${{ env.OUTPUT }}
|
|
|
|
path: /home/runner/work/monero/monero/${{ env.OUTPUT }}
|