From 3ac26777f048455f4f4dbdf325d33d6184f7db34 Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Wed, 17 Sep 2025 13:04:44 -0400 Subject: [PATCH] set wide columns to avoid line breaks in the log --- .github/workflows/integration-auth-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/integration-auth-tests.yml b/.github/workflows/integration-auth-tests.yml index 6787806e9..238fed683 100644 --- a/.github/workflows/integration-auth-tests.yml +++ b/.github/workflows/integration-auth-tests.yml @@ -84,6 +84,8 @@ jobs: yq eval '.server.auth.provider_config.jwks.token = "${{ env.TOKEN }}"' -i $run_dir/run.yaml cat $run_dir/run.yaml + # avoid line breaks in the server log, especially because we grep it below. + export COLUMNS=1984 nohup uv run llama stack run $run_dir/run.yaml --image-type venv > server.log 2>&1 & - name: Wait for Llama Stack server to be ready