1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00

mkosi: Enable debug logging in CI

"Failed to dissect image: connection timed out" messages have been
appearing sporadically in mkosi CI. Let's enable debug logging to
help figure out why.
This commit is contained in:
Daan De Meyer 2023-02-15 11:16:28 +01:00 committed by Luca Boccassi
parent 9259d71d50
commit 7f3e4c9489

View File

@ -107,12 +107,18 @@ jobs:
- name: Boot ${{ matrix.distro }} systemd-nspawn
run: sudo mkosi boot ${{ env.KERNEL_CMDLINE }} audit=0
env:
SYSTEMD_LOG_LEVEL: debug
- name: Check ${{ matrix.distro }} systemd-nspawn
run: sudo mkosi shell bash -c "[[ -e /testok ]] || { cat /failed-services; exit 1; }"
env:
SYSTEMD_LOG_LEVEL: debug
- name: Boot ${{ matrix.distro }} QEMU
run: timeout -k 30 10m mkosi qemu
- name: Check ${{ matrix.distro }} QEMU
run: sudo mkosi shell bash -c "[[ -e /testok ]] || { cat /failed-services; exit 1; }"
env:
SYSTEMD_LOG_LEVEL: debug