]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mkosi: Set meson --max-lines= to 300 in CI 35491/head
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Fri, 6 Dec 2024 14:21:29 +0000 (15:21 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 8 Dec 2024 11:55:43 +0000 (12:55 +0100)
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

index ccd166825f0d8c051124208e2c8e1197f3783f52..e8ba9d333498c9e401035d703d8bacc3da8eba40 100644 (file)
@@ -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