1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

Meta: Don't pass ^C through the serial console on CI

`-serial mon:stdio` passes through all kinds of key combinations,
`-serial stdio` doesn't. This probably isn't something that we want
while running tests or CI, so switch to the non-passing variant.

aarch64 actually failed to run due to this, since it already had
`-serial stdio` in its arguments, causing a conflict. This is why that
entry is now gone entirely.
This commit is contained in:
Tim Schumacher 2023-10-24 13:11:04 +02:00
parent fff1645c6b
commit b91d03c2b8
2 changed files with 2 additions and 3 deletions

View file

@ -523,7 +523,6 @@ elif [ "$SERENITY_RUN" = "ci" ]; then
-M raspi3b \
-d guest_errors \
-no-reboot \
-serial mon:stdio \
-monitor none \
-display none \
-serial file:debug.log \
@ -541,7 +540,7 @@ elif [ "$SERENITY_RUN" = "ci" ]; then
-no-reboot \
-smp ${SERENITY_CPUS} \
-device ich9-ahci \
-serial mon:stdio \
-serial stdio \
-display none \
-debugcon file:debug.log \
$SERENITY_KERNEL_AND_INITRD \