From 43af6fa3045bab85977ff63b3b2f328ceed1ad3c Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 30 Apr 2026 14:29:17 +1200 Subject: [PATCH] ci: temporarily force SQLite/shared matrix on this PR Short-circuit the matrix script so this PR runs SQLite shared-tables only while we drive the SQLite test suite to green. Revert this commit before merging so the upstream branch-aware matrix logic kicks back in. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ec9702cd5..c9f813a3b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -215,12 +215,17 @@ jobs: uses: actions/github-script@v8 with: script: | + // TEMP: forcing SQLite/shared on this PR until it goes green; revert before merge. const fullMatrixDatabases = ['MariaDB', 'PostgreSQL', 'MongoDB']; const fullMatrixModes = ['dedicated', 'shared']; const defaultDatabases = ['SQLite']; const defaultModes = ['shared']; + core.setOutput('databases', JSON.stringify(defaultDatabases)); + core.setOutput('modes', JSON.stringify(defaultModes)); + return; + const pr = context.payload.pull_request; if (!pr) { core.setOutput('databases', JSON.stringify(fullMatrixDatabases));