summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2023-02-15 11:16:28 +0100
committerLuca Boccassi <luca.boccassi@gmail.com>2023-02-15 20:02:54 +0000
commit7f3e4c948959bf6433748f18b139976064411ec3 (patch)
treed3bdc53ac300a9ffe4e58879d4239d48377a5282 /.github
parent9259d71d505ba1771ba5e3caa522da50bdc58bed (diff)
downloadsystemd-7f3e4c948959bf6433748f18b139976064411ec3.tar.gz
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mkosi.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml
index 9c5656d273..c11202a18c 100644
--- a/.github/workflows/mkosi.yml
+++ b/.github/workflows/mkosi.yml
@@ -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