From e469add21e3407ad3443c0e6f9c44dcf05935d99 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Fri, 6 Dec 2024 15:21:29 +0100 Subject: 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. --- .github/workflows/mkosi.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github') 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 -- cgit v1.2.3