mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
* 5e739ef1ed mkosi-initrd: Optionally match t64 suffix for tss2 libraries * ec70393077 Merge pull request https://github.com/systemd/mkosi/pull/3742 from DaanDeMeyer/man |\ | * 94cc136fbe mkosi-tools: Install man tool and pages as part of misc profile | * eda2ed533d Enforce C.UTF-8 locale for all commands we run * | 9821e9a3e3 sandbox: Support using mkosi-sandbox as a library * | 4145382edf Serialize pid in state and check if still exists on load * | 3d119cba07 Merge pull request https://github.com/systemd/mkosi/pull/3736 from DaanDeMeyer/rpm-gpgkey |\ \ | |/ |/| | * 0a5d87b7bb Only pick up /etc/pki/tls and /etc/pki/ca-trust as certificate dirs | * c30eee187f Look for rpm gpg keys from inside the sandbox |/ * ef2842dfea Fix version bump check if image version was passed on CLI * 12b6251153 apt: Install apt sources if apt was installed via base tree * a0b4e1af9a Make sure git doesn't fail when running as root * 585a47705d repart: use --append-fstab=auto if available * cec6ae1dda sandbox: handle case where dev node for tty doesn't exist * a60dade823 initrd: shadow-utils removal is only necessary on old Fedora * ca11acbd5b Use SPDX identifier instead of file path for license in pyproject.toml * 4d031bc57d Revert license-files property * c80dd09008 Merge pull request https://github.com/systemd/mkosi/pull/3722 from behrmann/versiontweaks |\ | * c76e5dc4bc make version test more readable | * 90ba99dde1 version: add __repr__ to GenericVersion |/ * dd794ec832 Fix licenses path in pyproject.toml * 7eeb749840 Merge pull request https://github.com/systemd/mkosi/pull/3702 from aafeijoo-suse/initrd-kmp |\ | * 565b905aa1 mkosi-initrd: handle symlinks under weak-updates | * a83ccc10c7 mkosi-initrd: perform basic checks on the kernel dir before calling mkosi | * 73cad79c9e mkosi-initrd: --kernel-modules-include -> --kernel-modules * bac76904c3 build(deps): bump github/codeql-action from 3.28.13 to 3.28.16 * 44161624a2 Supress ssh unit generation if sshd is not present * b8758dac28 Partially revert 640000a861e9cd9a3807e4158e110a098c74d078 * 6f11937dc6 Don't use default value if optional settings are set to none * 640000a861 Use a default tools tree by default if mkosi.tools.conf exists * 63d91cc285 mkosi: Override misconfigured gitconfig HTTP/HTTPS proxy with ProxyUrl * a859b5eb13 Make sure we create the default workspace directory as well
158 lines
5.3 KiB
YAML
158 lines
5.3 KiB
YAML
---
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
name: coverage
|
|
|
|
on:
|
|
schedule:
|
|
# Calculate coverage daily at midnight
|
|
- cron: '0 0 * * *'
|
|
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- v[0-9]+-stable
|
|
paths:
|
|
- .github/workflows/coverage.yml
|
|
- test/integration-tests/integration-test-wrapper.py
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
coverage:
|
|
runs-on: ubuntu-24.04
|
|
if: github.repository == 'systemd/systemd' || github.repository == 'systemd/systemd-stable'
|
|
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
|
- uses: systemd/mkosi@5e739ef1ed02a4f3b6ae64e50a8ee186cbcb21c2
|
|
|
|
# Freeing up disk space with rm -rf can take multiple minutes. Since we don't need the extra free space
|
|
# immediately, we remove the files in the background. However, we first move them to a different location
|
|
# so that nothing tries to use anything in these directories anymore while we're busy deleting them.
|
|
- name: Free disk space
|
|
run: |
|
|
sudo mv /usr/local /usr/local.trash
|
|
sudo mv /opt/hostedtoolcache /opt/hostedtoolcache.trash
|
|
sudo systemd-run rm -rf /usr/local.trash /opt/hostedtoolcache.trash
|
|
|
|
- name: Btrfs
|
|
run: |
|
|
truncate --size=100G btrfs.raw
|
|
mkfs.btrfs btrfs.raw
|
|
sudo mkdir /mnt/mkosi
|
|
LOOP="$(sudo losetup --find --show --direct-io=on btrfs.raw)"
|
|
sudo mount "$LOOP" /mnt/mkosi --options compress=zstd:1,user_subvol_rm_allowed,noatime,discard=async,space_cache=v2
|
|
sudo chown "$(id -u):$(id -g)" /mnt/mkosi
|
|
mkdir /mnt/mkosi/tmp
|
|
echo "TMPDIR=/mnt/mkosi/tmp" >>"$GITHUB_ENV"
|
|
ln -s /mnt/mkosi/build build
|
|
|
|
- name: Configure
|
|
run: |
|
|
# XXX: drop after the HyperV bug that breaks secure boot KVM guests is solved
|
|
sed -i "s/'firmware'\s*:\s*'auto'/'firmware' : 'uefi'/g" test/*/meson.build
|
|
|
|
tee mkosi/mkosi.local.conf <<EOF
|
|
[Distribution]
|
|
Distribution=arch
|
|
|
|
[Build]
|
|
ToolsTreeDistribution=arch
|
|
UseSubvolumes=yes
|
|
WithTests=no
|
|
|
|
WorkspaceDirectory=$TMPDIR
|
|
PackageCacheDirectory=$TMPDIR/cache
|
|
|
|
Environment=
|
|
# Build debuginfo packages since we'll be publishing the packages as artifacts.
|
|
WITH_DEBUG=1
|
|
CFLAGS=-Og
|
|
MESON_OPTIONS=--werror
|
|
COVERAGE=1
|
|
|
|
[Runtime]
|
|
RAM=4G
|
|
EOF
|
|
|
|
- name: Generate secure boot key
|
|
run: mkosi --debug genkey
|
|
|
|
- name: Show image summary
|
|
run: mkosi summary
|
|
|
|
- name: Build tools tree
|
|
run: sudo mkosi -f sandbox -- true
|
|
|
|
- name: Configure meson
|
|
run: |
|
|
sudo mkosi sandbox -- \
|
|
meson setup \
|
|
--buildtype=debugoptimized \
|
|
build
|
|
|
|
- name: Build image
|
|
run: sudo mkosi sandbox -- meson compile -C build mkosi
|
|
|
|
- name: Initial coverage report
|
|
run: |
|
|
sudo mkdir -p build/test/coverage
|
|
sudo mkosi sandbox -- \
|
|
lcov \
|
|
--directory build/mkosi.builddir/arch~rolling~x86-64 \
|
|
--capture \
|
|
--initial \
|
|
--exclude "*.gperf" \
|
|
--output-file build/test/coverage/initial.coverage-info \
|
|
--base-directory src/ \
|
|
--ignore-errors source \
|
|
--no-external \
|
|
--substitute "s#src/src#src#g"
|
|
|
|
- name: Run integration tests
|
|
run: |
|
|
# --preserve-env makes sure all the github actions environment variables are propagated which are
|
|
# used in integration-test-wrapper.py to construct the `gh` command line to download the journals
|
|
# of failed tests.
|
|
sudo --preserve-env mkosi sandbox -- \
|
|
meson test \
|
|
-C build \
|
|
--no-rebuild \
|
|
--setup=integration \
|
|
--suite=integration-tests \
|
|
--print-errorlogs \
|
|
--no-stdsplit \
|
|
--num-processes "$(($(nproc) - 1))" \
|
|
--timeout-multiplier 2 \
|
|
--max-lines 300
|
|
|
|
- name: Archive failed test journals
|
|
uses: actions/upload-artifact@v4
|
|
if: failure() && (github.repository == 'systemd/systemd' || github.repository == 'systemd/systemd-stable')
|
|
with:
|
|
name: ci-coverage-${{ github.run_id }}-${{ github.run_attempt }}-arch-rolling-failed-test-journals
|
|
path: |
|
|
build/test/journal/*.journal
|
|
build/meson-logs/*
|
|
retention-days: 7
|
|
|
|
- name: Combine coverage reports
|
|
run: |
|
|
lcov_args=()
|
|
|
|
while read -r file; do
|
|
lcov_args+=(--add-tracefile "${file}")
|
|
done < <(find build/test/coverage -name "TEST-*.coverage-info")
|
|
|
|
sudo mkosi sandbox -- lcov --ignore-errors inconsistent,inconsistent "${lcov_args[@]}" --output-file build/test/coverage/everything.coverage-info
|
|
|
|
- name: List coverage report
|
|
run: sudo mkosi sandbox -- lcov --ignore-errors inconsistent,inconsistent --list build/test/coverage/everything.coverage-info
|
|
|
|
- name: Coveralls
|
|
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
|
|
if: github.repository == 'systemd/systemd' || github.repository == 'systemd/systemd-stable'
|
|
with:
|
|
file: build/test/coverage/everything.coverage-info
|