diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2023-05-31 16:19:21 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2023-06-02 15:43:28 +0200 |
commit | a47c48cbb2625381ec75fcb3d6f0dba4cccd2ba5 (patch) | |
tree | 033f078515d8c6aa611d1774dc7437e8a9f870c4 /.github | |
parent | core: Add systemd.default_device_timeout_sec= cmdline option (diff) | |
download | systemd-a47c48cbb2625381ec75fcb3d6f0dba4cccd2ba5.tar.xz systemd-a47c48cbb2625381ec75fcb3d6f0dba4cccd2ba5.zip |
mkosi: Only lower device timeout instead of all timeouts
We only really care about lowering the device timeout so we get to
a shell faster when the root device doesn't appear so let's only
lower that timeout instead of lowering all default timeouts.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mkosi.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml index c0f54d8da4..9010b1fcb7 100644 --- a/.github/workflows/mkosi.yml +++ b/.github/workflows/mkosi.yml @@ -87,7 +87,6 @@ jobs: [Content] Environment=CI_BUILD=1 - DEFAULT_TIMEOUT_SEC=180 SLOW_TESTS=true [Output] @@ -95,6 +94,8 @@ jobs: systemd.journald.max_level_console=debug # udev's debug log output is very verbose, so up it to info in CI. udev.log_level=info + # Root device can take a long time to appear, so let's bump the timeout. + systemd.default_device_timeout_sec=180 [Host] ExtraSearchPaths=!* |