From 997ba948472250e25d47e7d4e73bed14718ab5f0 Mon Sep 17 00:00:00 2001 From: Junwang Zhao Date: Tue, 16 Dec 2025 14:14:37 +0800 Subject: [PATCH] chore: disable timeout in meson test cases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The rest_integration_test can sometimes run longer that 30s, so disable meson test timeout and rely on the GH actions job–level timeout. --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6bb287b63..621c4b3ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -102,6 +102,7 @@ jobs: meson: name: Meson - ${{ matrix.title }} runs-on: ${{ matrix.runs-on }} + timeout-minutes: 30 strategy: fail-fast: false matrix: @@ -137,4 +138,4 @@ jobs: meson compile -C builddir - name: Test Iceberg run: | - meson test -C builddir + meson test -C builddir --timeout-multiplier 0