summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2023-03-07 15:23:35 +0100
committerDaan De Meyer <daan.j.demeyer@gmail.com>2023-03-07 15:25:19 +0100
commit925bb83ea5318730cff5ca6ed938b4fb89aad508 (patch)
treebdeb4dedd57f72c5a528fdb2144efad557aa321a /.github
parent8d29e401ce66cdf432cae23293a7ef61d08ef936 (diff)
downloadsystemd-925bb83ea5318730cff5ca6ed938b4fb89aad508.tar.gz
mkosi: Drop debug logging
The spurious "connection timed out" errors from nspawn should be fixed now that we're running the latest version.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mkosi.yml32
1 files changed, 3 insertions, 29 deletions
diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml
index 54073a814c..6e16f25edb 100644
--- a/.github/workflows/mkosi.yml
+++ b/.github/workflows/mkosi.yml
@@ -106,39 +106,13 @@ jobs:
run: mkosi summary
- name: Boot ${{ matrix.distro }} systemd-nspawn
- run: |
- STATUS=0
- sudo strace -f -Z -o strace mkosi boot ${{ env.KERNEL_CMDLINE }} audit=0 || STATUS=$?
- if [ $STATUS -ne 0 ]; then
- cat strace
- fi
- exit $STATUS
- env:
- SYSTEMD_LOG_LEVEL: debug
+ run: sudo mkosi boot ${{ env.KERNEL_CMDLINE }} audit=0
- name: Check ${{ matrix.distro }} systemd-nspawn
- run: |
- STATUS=0
- sudo strace -f -Z -o strace mkosi shell bash -c "[[ -e /testok ]] || STATUS=$?"
- if [ $STATUS -ne 0 ]; then
- cat /failed-services
- cat strace
- fi
- exit $STATUS
- env:
- SYSTEMD_LOG_LEVEL: debug
+ run: sudo mkosi shell bash -c "[[ -e /testok ]] || { cat /failed-services; exit 1; }"
- name: Boot ${{ matrix.distro }} QEMU
run: timeout -k 30 10m mkosi qemu
- name: Check ${{ matrix.distro }} QEMU
- run: |
- STATUS=0
- sudo strace -f -Z -o strace mkosi shell bash -c "[[ -e /testok ]] || STATUS=$?"
- if [ $STATUS -ne 0 ]; then
- cat /failed-services
- cat strace
- fi
- exit $STATUS
- env:
- SYSTEMD_LOG_LEVEL: debug
+ run: sudo mkosi shell bash -c "[[ -e /testok ]] || { cat /failed-services; exit 1; }"