[PATCH v5 05/13] CI: Run driver domains test on Debian too
Marek Marczykowski-Górecki <[email protected]> Wed, 5 Aug 2026 16:55:33 +0200
| Newsgroups | gmane.comp.emulators.xen.devel |
|---|---|
| Message-ID | <372962629561e96b83fc87039b0e6e31e4f9b6e6.1785941707.git-series.marmarek@invisiblethingslab.com> |
The recent failure affected only glibc-based systems, so do the test on Debian too. Signed-off-by: Marek Marczykowski-Górecki <[email protected]> Acked-by: Stefano Stabellini <[email protected]> --- Changes in v3: - update to trixie Changes in v2: - use systemd in Debian Needs debian/13-x86_64 container rebuild. --- automation/build/debian/13-x86_64.dockerfile | 1 +- automation/gitlab-ci/test.yaml | 19 ++++++++++++++++++- automation/scripts/qemu-driverdomains-x86_64.sh | 18 +++++++++++++++-- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/automation/build/debian/13-x86_64.dockerfile b/automation/build/debian/13-x86_64.dockerfile index 5088f7435c1e..8a36774f1155 100644 --- a/automation/build/debian/13-x86_64.dockerfile +++ b/automation/build/debian/13-x86_64.dockerfile @@ -61,6 +61,7 @@ RUN <<EOF fakeroot ovmf qemu-system-x86 + systemctl # for build-each-commit-gcc ccache diff --git a/automation/gitlab-ci/test.yaml b/automation/gitlab-ci/test.yaml index 566d1f4287d7..184cf9b47d46 100644 --- a/automation/gitlab-ci/test.yaml +++ b/automation/gitlab-ci/test.yaml @@ -27,6 +27,17 @@ job: microcode-x86 ref: $ARTIFACTS_BRANCH +.debian-x86-64-test-needs: &debian-x86-64-test-needs + - project: xen-project/hardware/test-artifacts + job: linux-6.6.56-x86_64 + ref: master + - project: xen-project/hardware/test-artifacts + job: debian-13-x86_64-rootfs + ref: master + - project: xen-project/hardware/test-artifacts + job: microcode-x86 + ref: master + .qemu-arm64: extends: .test-jobs-common variables: @@ -741,6 +752,14 @@ qemu-alpine-driverdomains-x86_64-gcc: - *x86_64-test-needs - alpine-3.24-x86_64-gcc +qemu-debian-13-driverdomains-x86_64-gcc: + extends: .qemu-x86_64 + script: + - ./automation/scripts/qemu-driverdomains-x86_64.sh 2>&1 | tee ${LOGFILE} + needs: + - *debian-x86-64-test-needs + - debian-13-x86_64-gcc-debug + qemu-smoke-x86_64-gcc: extends: .qemu-smoke-x86_64 script: diff --git a/automation/scripts/qemu-driverdomains-x86_64.sh b/automation/scripts/qemu-driverdomains-x86_64.sh index bada6599842e..07bc617058f9 100755 --- a/automation/scripts/qemu-driverdomains-x86_64.sh +++ b/automation/scripts/qemu-driverdomains-x86_64.sh @@ -20,7 +20,11 @@ if grep -q test=backend /proc/cmdline; then brctl addbr xenbr0 ip link set xenbr0 up ip addr add 192.168.0.1/24 dev xenbr0 - bash /etc/init.d/xendriverdomain start + if [ -d /run/systemd ]; then + systemctl start xendriverdomain + else + bash /etc/init.d/xendriverdomain start + fi # log backend-related logs to the console tail -F /var/log/xen/xldevd.log /var/log/xen/xen-hotplug.log >>/dev/console 2>/dev/null & else @@ -83,7 +87,11 @@ cat > etc/local.d/xen.start << EOF set -x -bash /etc/init.d/xencommons start +if [ -d /run/systemd ]; then + systemctl start xen-init-dom0.service +else + bash /etc/init.d/xencommons start +fi xl list @@ -100,6 +108,12 @@ cp ../bzImage ./root/ mkdir -p etc/default echo 'XENCONSOLED_TRACE=all' >> etc/default/xencommons mkdir -p var/log/xen/console +if [ -e etc/systemd/system.conf ]; then + systemctl --root=. enable \ + xenstored.service \ + xenconsoled.service \ + xen-init-dom0.service +fi # this is a sparse file, not really using full 2GiB fakeroot -i ../fakeroot-save mkfs.ext4 -d . ../dom0-rootfs.img 2048M cd .. -- git-series 0.9.1