From: Daan De Meyer Date: Fri, 6 Dec 2024 14:21:29 +0000 (+0100) Subject: mkosi: Set meson --max-lines= to 300 in CI X-Git-Tag: v257~16^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F35491%2Fhead;p=thirdparty%2Fsystemd.git 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. --- diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml index ccd166825f0..e8ba9d33349 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