From cf102afc17f0efbd512994a491e742b107730fcf Mon Sep 17 00:00:00 2001 From: Pavel Zeman Date: Thu, 9 Apr 2026 05:44:50 -0400 Subject: [PATCH] ci: disable fullyparallel for binary parameters job (#35995) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Binary parameters tests run unsharded on a single runner. With fullyparallel enabled, all ~755 api4 tests run concurrently, causing resource exhaustion (too many server instances, WebSocket hubs, and DB connections). The test binary gets killed after 11 minutes with no individual test failures — just overwhelmed resources. Disabling fullyparallel for this specific job lets binary parameters tests pass while we evaluate moving them to a nightly/weekly schedule. Co-authored-by: Claude --- .github/workflows/server-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/server-ci.yml b/.github/workflows/server-ci.yml index 5ca710d3120..2c80b1761fb 100644 --- a/.github/workflows/server-ci.yml +++ b/.github/workflows/server-ci.yml @@ -208,6 +208,7 @@ jobs: logsartifact: postgres-binary-server-test-logs go-version: ${{ needs.go.outputs.version }} fips-enabled: false + fullyparallel: false # -- Sharded into 4 parallel runners for ~88% wall-time improvement -- test-postgres-normal: name: Postgres (shard ${{ matrix.shard }})