This is an automated email from the ASF dual-hosted git repository.
gangwu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-cpp.git
The following commit(s) were added to refs/heads/main by this push:
new 769e2ac5 chore: disable timeout in meson test cases (#413)
769e2ac5 is described below
commit 769e2ac5fa81933240c12519e9b41efd1569a46a
Author: Junwang Zhao <[email protected]>
AuthorDate: Tue Dec 16 22:22:53 2025 +0800
chore: disable timeout in meson test cases (#413)
The rest_integration_test can sometimes run longer that 30s, so disable
meson test timeout[1] and rely on the GH actions job–level timeout.
[1] https://mesonbuild.com/Unit-tests.html#other-test-options
---
.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 6bb287b6..621c4b3c 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