mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
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:
32
.github/workflows/mkosi.yml
vendored
32
.github/workflows/mkosi.yml
vendored
@@ -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; }"
|
||||
|
||||
Reference in New Issue
Block a user