mkosi: Drop debug logging

The spurious "connection timed out" errors from nspawn should be
fixed now that we're running the latest version.
This commit is contained in:
Daan De Meyer 2023-03-07 15:23:35 +01:00
parent 8d29e401ce
commit 925bb83ea5

View file

@ -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; }"