diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-12-06 15:21:29 +0100 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-12-08 12:55:43 +0100 |
commit | e469add21e3407ad3443c0e6f9c44dcf05935d99 (patch) | |
tree | b5e9df6275f4980933ed9973e90ff32424918639 /.github | |
parent | mkosi: Use mkosi sandbox in CI with Fedora tools tree (diff) | |
download | systemd-e469add21e3407ad3443c0e6f9c44dcf05935d99.tar.xz systemd-e469add21e3407ad3443c0e6f9c44dcf05935d99.zip |
mkosi: Set meson --max-lines= to 300 in CI
By default meson only shows the last 100 lines of output for failed
tests. Let's bump this to 300 with the new --max-lines= option I added
so we get more useful output on test failures.
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 ccd166825f..e8ba9d3334 100644 --- a/.github/workflows/mkosi.yml +++ b/.github/workflows/mkosi.yml @@ -201,7 +201,8 @@ jobs: --suite integration-tests \ --print-errorlogs \ --no-stdsplit \ - --num-processes "$(($(nproc) - 1))" + --num-processes "$(($(nproc) - 1))" \ + --max-lines 300 - name: Archive failed test journals uses: actions/upload-artifact@v4 |