From c68dc3cfe7cf0822060467d7ac41f97eecacd8a2 Mon Sep 17 00:00:00 2001 From: weiqingy Date: Thu, 9 Jul 2026 23:57:56 -0700 Subject: [PATCH 1/4] [ci] Bound the runtime of the integration-test jobs The integration-test jobs set no timeout-minutes, so a hung test runs until GitHub's six-hour job ceiling before it is killed. A recent run consumed six hours on a stalled it-python job whose result was knowable in minutes. Bound the three jobs that install and exercise a local Ollama server. The limits are roughly two to three times each job's slowest observed run over recent green builds on main: it-python 26.2m, cross-language 24.8m, and it-java 14.0m. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 463be4c99..164ede2ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -153,6 +153,7 @@ jobs: python_it_tests: name: it-python [${{ matrix.os }}] [java-17] [python-${{ matrix.python-version}}] [flink-${{ matrix.flink-version}}] runs-on: ${{ matrix.os }} + timeout-minutes: 60 env: SKIP_SPOTLESS_CHECK: true strategy: @@ -201,6 +202,7 @@ jobs: java_it_tests: name: it-java [${{ matrix.os }}] [java-${{ matrix.java-version}}] [flink-${{ matrix.flink-version}}] runs-on: ${{ matrix.os }} + timeout-minutes: 40 env: SKIP_SPOTLESS_CHECK: true strategy: @@ -241,6 +243,7 @@ jobs: cross_language_tests: name: cross-language [${{ matrix.os }}] [python-${{ matrix.python-version}}] [java-${{ matrix.java-version}}] runs-on: ${{ matrix.os }} + timeout-minutes: 60 env: SKIP_SPOTLESS_CHECK: true strategy: From 7e07485f6fc4471520d87353b2b3d91c59f1267a Mon Sep 17 00:00:00 2001 From: weiqingy Date: Fri, 10 Jul 2026 09:29:19 -0700 Subject: [PATCH 2/4] [ci] Re-trigger CI (flaky env failures unrelated to this change) From eedac44a0303f4f40fd0aa6423684351597a6323 Mon Sep 17 00:00:00 2001 From: weiqingy Date: Fri, 10 Jul 2026 10:24:33 -0700 Subject: [PATCH 3/4] [ci] Re-trigger CI (flaky env failures unrelated to this change) From fde22ad5d96128b8eed685720daeb9e4e4b689dd Mon Sep 17 00:00:00 2001 From: weiqingy Date: Fri, 10 Jul 2026 11:55:22 -0700 Subject: [PATCH 4/4] [ci] Re-trigger CI (flaky env failures unrelated to this change)