mirror of
https://github.com/monero-project/monero.git
synced 2025-01-19 16:13:40 +02:00
2fe0f04c1e
Some checks failed
ci/gh-actions/cli / build-macos (push) Has been cancelled
ci/gh-actions/cli / build-windows (push) Has been cancelled
ci/gh-actions/cli / build-ubuntu (ubuntu-20.04) (push) Has been cancelled
ci/gh-actions/cli / build-ubuntu (ubuntu-22.04) (push) Has been cancelled
ci/gh-actions/cli / libwallet-ubuntu (push) Has been cancelled
ci/gh-actions/cli / source-archive (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:aarch64-apple-darwin11 name:Cross-Mac aarch64 packages:cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev python3-setuptools-git]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:aarch64-linux-gnu name:ARM v8 packages:python3 gperf g++-aarch64-linux-gnu]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:arm-linux-gnueabihf name:ARM v7 packages:python3 gperf g++-arm-linux-gnueabihf]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:i686-pc-linux-gnu name:i686 Linux packages:gperf cmake g++-multilib python3-zmq]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:i686-w64-mingw32 name:i686 Win packages:python3 g++-mingw-w64-i686]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:riscv64-linux-gnu name:RISCV 64bit packages:python3 gperf g++-riscv64-linux-gnu]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:x86_64-apple-darwin11 name:Cross-Mac x86_64 packages:cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev python3-setuptools-git]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:x86_64-unknown-freebsd name:x86_64 Freebsd packages:clang-8 gperf cmake python3-zmq libdbus-1-dev libharfbuzz-dev]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:x86_64-unknown-linux-gnu name:x86_64 Linux packages:gperf cmake python3-zmq libdbus-1-dev libharfbuzz-dev]) (push) Has been cancelled
ci/gh-actions/depends / ${{ matrix.toolchain.name }} (map[host:x86_64-w64-mingw32 name:Win64 packages:cmake python3 g++-mingw-w64-x86-64]) (push) Has been cancelled
ci/gh-actions/cli / test-ubuntu (push) Has been cancelled
6a56219
ci: brew: pin boost to 1.85 (tobtoht)
194 lines
6.8 KiB
YAML
194 lines
6.8 KiB
YAML
name: ci/gh-actions/cli
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**/README.md'
|
|
|
|
# The below variables reduce repetitions across similar targets
|
|
env:
|
|
REMOVE_BUNDLED_BOOST : rm -rf /usr/local/share/boost
|
|
BUILD_DEFAULT_LINUX: |
|
|
cmake -S . -B build -D ARCH="default" -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=Release && cmake --build build -j3
|
|
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: |
|
|
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
|
|
CCACHE_SETTINGS: |
|
|
ccache --max-size=150M
|
|
ccache --set-config=compression=true
|
|
|
|
jobs:
|
|
build-macos:
|
|
runs-on: macOS-latest
|
|
env:
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: /Users/runner/Library/Caches/ccache
|
|
key: ccache-${{ runner.os }}-build-${{ github.sha }}
|
|
restore-keys: ccache-${{ runner.os }}-build-
|
|
- name: install dependencies
|
|
run: |
|
|
HOMEBREW_NO_AUTO_UPDATE=1 brew install boost@1.85 hidapi openssl zmq libpgm miniupnpc expat libunwind-headers protobuf ccache
|
|
brew link boost@1.85
|
|
- name: build
|
|
run: |
|
|
${{env.CCACHE_SETTINGS}}
|
|
make -j3
|
|
|
|
build-windows:
|
|
runs-on: windows-latest
|
|
env:
|
|
CCACHE_TEMPDIR: C:\Users\runneradmin\.ccache-temp
|
|
CCACHE_DIR: C:\Users\runneradmin\.ccache
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: C:\Users\runneradmin\.ccache
|
|
key: ccache-${{ runner.os }}-build-${{ github.sha }}
|
|
restore-keys: ccache-${{ runner.os }}-build-
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
update: true
|
|
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
|
|
- shell: msys2 {0}
|
|
run: |
|
|
curl -O https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-boost-1.86.0-7-any.pkg.tar.zst
|
|
echo "3e84674b4d2b3ab82f4d5e22bcc2015fa139b6fd936c55d6b71f89a72a1ee0a2 mingw-w64-x86_64-boost-1.86.0-7-any.pkg.tar.zst" | sha256sum -c
|
|
curl -O https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-boost-libs-1.86.0-7-any.pkg.tar.zst
|
|
echo "4cb1d1066fffa6a5788b212ccb920c6d8cc93a8ecbbc633565bfc9b2ebc6feb5 mingw-w64-x86_64-boost-libs-1.86.0-7-any.pkg.tar.zst" | sha256sum -c
|
|
pacman --noconfirm -U mingw-w64-x86_64-boost-1.86.0-7-any.pkg.tar.zst mingw-w64-x86_64-boost-libs-1.86.0-7-any.pkg.tar.zst
|
|
- name: build
|
|
run: |
|
|
${{env.CCACHE_SETTINGS}}
|
|
make release-static-win64 -j2
|
|
|
|
# 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
|
|
|
|
build-ubuntu:
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-22.04, ubuntu-20.04]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ~/.ccache
|
|
key: ccache-${{ runner.os }}-build-${{ matrix.os }}-${{ github.sha }}
|
|
restore-keys: ccache-${{ runner.os }}-build-${{ matrix.os }}
|
|
- name: remove bundled boost
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
|
- name: set apt conf
|
|
run: ${{env.APT_SET_CONF}}
|
|
- name: update apt
|
|
run: sudo apt update
|
|
- name: install monero dependencies
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
|
- name: build
|
|
run: |
|
|
${{env.CCACHE_SETTINGS}}
|
|
${{env.BUILD_DEFAULT_LINUX}}
|
|
|
|
libwallet-ubuntu:
|
|
runs-on: ubuntu-20.04
|
|
env:
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ~/.ccache
|
|
key: ccache-${{ runner.os }}-libwallet-${{ github.sha }}
|
|
restore-keys: ccache-${{ runner.os }}-libwallet-
|
|
- name: remove bundled boost
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
|
- name: set apt conf
|
|
run: ${{env.APT_SET_CONF}}
|
|
- name: update apt
|
|
run: sudo apt update
|
|
- name: install monero dependencies
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
|
- name: build
|
|
run: |
|
|
${{env.CCACHE_SETTINGS}}
|
|
cmake .
|
|
make wallet_api -j3
|
|
|
|
test-ubuntu:
|
|
needs: build-ubuntu
|
|
runs-on: ubuntu-20.04
|
|
env:
|
|
CCACHE_TEMPDIR: /tmp/.ccache-temp
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- name: ccache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/.ccache
|
|
key: ccache-${{ runner.os }}-build-ubuntu-latest-${{ github.sha }}
|
|
restore-keys: ccache-${{ runner.os }}-build-ubuntu-latest
|
|
- name: remove bundled boost
|
|
run: ${{env.REMOVE_BUNDLED_BOOST}}
|
|
- name: set apt conf
|
|
run: ${{env.APT_SET_CONF}}
|
|
- name: update apt
|
|
run: sudo apt update
|
|
- name: install monero dependencies
|
|
run: ${{env.APT_INSTALL_LINUX}}
|
|
- name: install Python dependencies
|
|
run: pip install requests psutil monotonic zmq deepdiff
|
|
- name: tests
|
|
env:
|
|
CTEST_OUTPUT_ON_FAILURE: ON
|
|
DNS_PUBLIC: tcp://9.9.9.9
|
|
run: |
|
|
${{env.CCACHE_SETTINGS}}
|
|
${{env.BUILD_DEFAULT_LINUX}}
|
|
cmake --build build --target test
|
|
|
|
# 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.
|
|
|
|
source-archive:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
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@v3
|
|
with:
|
|
name: ${{ env.OUTPUT }}
|
|
path: /home/runner/work/monero/monero/${{ env.OUTPUT }}
|