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) <noreply@anthropic.com>
This commit is contained in:
Jake Barnby
2026-04-30 14:29:17 +12:00
co-authored by Claude Opus 4.7
parent 895df2ca28
commit 43af6fa304
+5
View File
@@ -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));