Skip to content

Commit fe6bd7c

Browse files
committed
ci: allow mysql 5.7 and mariadb to fail
1 parent e400499 commit fe6bd7c

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/test-mariadb.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
test-mariadb:
88
name: functional (mariadb ${{ matrix.version }})
9+
continue-on-error: true
910
runs-on: ubuntu-latest
1011
strategy:
1112
fail-fast: false

.github/workflows/test-mysql.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
test-mysql:
88
name: functional (mysql ${{ matrix.version }})
9+
continue-on-error: ${{ matrix.version == '5.7' }}
910
runs-on: ubuntu-latest
1011
strategy:
1112
fail-fast: false

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Platform Enhancements: Overhauled SQLite with a robust table-rebuild flow for complex ALTER operations and refactored MySQL metadata providers to support non-blocking async I/O.
88
- Public API & Packaging: Cleaned up the export surface using folder-based _index.ts barrels and optimized package subpaths for better consumer tree-shaking.
99
- Test Infrastructure: Introduced a local Docker-backed functional runner (bun run test:functional:local) and orchestrated a high-concurrency CI pipeline covering multi-version database matrices.
10+
- CI: Allowed MySQL 5.7 and all MariaDB functional matrix jobs to fail without failing the overall GitHub Actions run.
1011

1112
# API Stabilization & Documentation
1213

0 commit comments

Comments
 (0)