ci: containerize ubuntu cli jobs

This commit is contained in:
tobtoht 2025-01-15 14:35:20 +01:00
parent a4a4a1df1d
commit 72d5da84bb
No known key found for this signature in database
GPG Key ID: E45B10DD027D2472

View File

@ -79,6 +79,7 @@ jobs:
make release-static-win64 -j4 make release-static-win64 -j4
build-debian: build-debian:
# Oldest supported Debian version
name: 'Debian 10' name: 'Debian 10'
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
@ -100,43 +101,47 @@ jobs:
- name: build - name: build
run: ${{env.BUILD_DEFAULT_LINUX}} run: ${{env.BUILD_DEFAULT_LINUX}}
# 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: build-ubuntu:
name: ${{ matrix.name }} name: ${{ matrix.name }}
runs-on: ${{ matrix.os }} runs-on: ubuntu-latest
env:
CCACHE_TEMPDIR: /tmp/.ccache-temp
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
include: include:
- os: ubuntu-20.04 # Oldest supported Ubuntu LTS version
name: Ubuntu 20.04 - name: Ubuntu 20.04
- os: ubuntu-22.04 container: ubuntu:20.04
name: Ubuntu 22.04
# Most popular Ubuntu LTS version
- name: Ubuntu 22.04
container: ubuntu:22.04
container:
image: ${{ matrix.container }}
env:
DEBIAN_FRONTEND: noninteractive
CCACHE_TEMPDIR: /tmp/.ccache-temp
CCACHE_DIR: ~/.ccache
steps: steps:
- uses: actions/checkout@v4 - name: set apt conf
with: run: ${{env.APT_SET_CONF}}
submodules: recursive - name: update apt
- uses: actions/cache@v4 run: apt update
with: - name: install monero dependencies
path: ~/.ccache run: ${{env.APT_INSTALL_LINUX}}
key: ccache-${{ runner.os }}-build-${{ matrix.os }}-${{ github.sha }} - name: configure git
restore-keys: ccache-${{ runner.os }}-build-${{ matrix.os }} run: git config --global --add safe.directory '*'
- name: remove bundled packages - uses: actions/checkout@v4
run: ${{env.REMOVE_BUNDLED_PACKAGES}} with:
- name: set apt conf submodules: recursive
run: sudo ${{env.APT_SET_CONF}} - uses: actions/cache@v4
- name: update apt with:
run: sudo apt update path: ~/.ccache
- name: install monero dependencies key: ccache-${{ matrix.container }}-build-${{ github.sha }}
run: sudo ${{env.APT_INSTALL_LINUX}} restore-keys: ccache-${{ matrix.container }}-build-
- name: build - name: build
run: | run: |
${{env.CCACHE_SETTINGS}} ${{env.CCACHE_SETTINGS}}
${{env.BUILD_DEFAULT_LINUX}} ${{env.BUILD_DEFAULT_LINUX}}
libwallet-ubuntu: libwallet-ubuntu:
name: "Ubuntu 20.04 (libwallet)" name: "Ubuntu 20.04 (libwallet)"
@ -167,59 +172,81 @@ jobs:
make wallet_api -j4 make wallet_api -j4
test-ubuntu: test-ubuntu:
name: "Ubuntu 20.04 (tests)" name: "${{ matrix.name }} (tests)"
needs: build-ubuntu needs: build-ubuntu
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
env: strategy:
CCACHE_TEMPDIR: /tmp/.ccache-temp matrix:
steps: include:
- uses: actions/checkout@v4 - name: Ubuntu 20.04
with: container: ubuntu:20.04
submodules: recursive container:
- name: ccache image: ${{ matrix.container }}
uses: actions/cache@v4
with:
path: ~/.ccache
key: ccache-${{ runner.os }}-build-ubuntu-latest-${{ github.sha }}
restore-keys: ccache-${{ runner.os }}-build-ubuntu-latest
- name: remove bundled packages
run: ${{env.REMOVE_BUNDLED_PACKAGES}}
- name: set apt conf
run: sudo ${{env.APT_SET_CONF}}
- name: update apt
run: sudo apt update
- name: install monero dependencies
run: sudo ${{env.APT_INSTALL_LINUX}}
- name: install Python dependencies
run: pip install requests psutil monotonic zmq deepdiff
- name: tests
env: env:
CTEST_OUTPUT_ON_FAILURE: ON DEBIAN_FRONTEND: noninteractive
DNS_PUBLIC: tcp://9.9.9.9 CCACHE_TEMPDIR: /tmp/.ccache-temp
run: | CCACHE_DIR: ~/.ccache
${{env.CCACHE_SETTINGS}} steps:
${{env.BUILD_DEFAULT_LINUX}} - name: set apt conf
cmake --build build --target test run: ${{env.APT_SET_CONF}}
- name: update apt
run: apt update
- name: install monero dependencies
run: ${{env.APT_INSTALL_LINUX}}
- name: install pip
run: apt install -y python3-pip
- name: install Python dependencies
run: pip install requests psutil monotonic zmq deepdiff
- name: configure git
run: git config --global --add safe.directory '*'
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v4
with:
path: ~/.ccache
key: ccache-${{ matrix.container }}-build-${{ github.sha }}
restore-keys: ccache-${{ matrix.container }}-build-
- 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. # 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. # 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: source-archive:
name: "source archive" name: "source archive"
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
container:
image: ubuntu:20.04
env:
DEBIAN_FRONTEND: noninteractive
steps: steps:
- uses: actions/checkout@v4 - name: set apt conf
with: run: ${{env.APT_SET_CONF}}
fetch-depth: 0 - name: update apt
submodules: recursive run: apt update
- name: archive - name: install dependencies
run: | run: apt install -y git python3-pip
pip install git-archive-all - name: configure git
export VERSION="monero-$(git describe)" run: git config --global --add safe.directory '*'
export OUTPUT="$VERSION.tar" - uses: actions/checkout@v4
echo "OUTPUT=$OUTPUT" >> $GITHUB_ENV with:
/home/runner/.local/bin/git-archive-all --prefix "$VERSION/" --force-submodules "$OUTPUT" fetch-depth: 0
- uses: actions/upload-artifact@v4 submodules: recursive
with: - name: archive
name: ${{ env.OUTPUT }} run: |
path: /home/runner/work/${{ github.event.repository.name }}/${{ github.event.repository.name }}/${{ env.OUTPUT }} pip install git-archive-all
export VERSION="monero-$(git describe)"
export OUTPUT="$VERSION.tar"
echo "OUTPUT=$OUTPUT" >> $GITHUB_ENV
git-archive-all --prefix "$VERSION/" --force-submodules "$OUTPUT"
- uses: actions/upload-artifact@v4
with:
name: ${{ env.OUTPUT }}
path: ${{ env.OUTPUT }}