ci: make mysql:8 matrix leg blocking
Drop the experimental/continue-on-error gating on the mysql-8 leg so failures are surfaced directly on the PR. We want to see any MySQL-8-specific regressions break CI instead of hiding them behind a soft-fail while we stabilize. Refs #2589
This commit is contained in:
parent
5251554db7
commit
3ae134590c
|
|
@ -96,7 +96,6 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
needs:
|
||||||
- api-build
|
- api-build
|
||||||
continue-on-error: ${{ matrix.experimental == true }}
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
db:
|
db:
|
||||||
|
|
@ -104,9 +103,6 @@ jobs:
|
||||||
- postgres
|
- postgres
|
||||||
- mariadb
|
- mariadb
|
||||||
- mysql-8
|
- mysql-8
|
||||||
include:
|
|
||||||
- db: mysql-8
|
|
||||||
experimental: true
|
|
||||||
services:
|
services:
|
||||||
migration-smoke-db-mariadb:
|
migration-smoke-db-mariadb:
|
||||||
image: ${{ matrix.db == 'mariadb' && 'mariadb:12@sha256:f54db0cb3ccfe9431aba6d08c65a1763c499789b116b4cb651dd7fcf325965b3' || '' }}
|
image: ${{ matrix.db == 'mariadb' && 'mariadb:12@sha256:f54db0cb3ccfe9431aba6d08c65a1763c499789b116b4cb651dd7fcf325965b3' || '' }}
|
||||||
|
|
@ -179,7 +175,6 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
needs:
|
||||||
- mage
|
- mage
|
||||||
continue-on-error: ${{ matrix.experimental == true }}
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
db:
|
db:
|
||||||
|
|
@ -192,9 +187,6 @@ jobs:
|
||||||
test:
|
test:
|
||||||
- feature
|
- feature
|
||||||
- web
|
- web
|
||||||
include:
|
|
||||||
- db: mysql-8
|
|
||||||
experimental: true
|
|
||||||
services:
|
services:
|
||||||
db-mariadb:
|
db-mariadb:
|
||||||
image: ${{ matrix.db == 'mariadb' && 'mariadb:12@sha256:5b6a1eac15b85b981a61afb89aea2a22bf76b5f58809d05f0bcc13ab6ec44cb8' || '' }}
|
image: ${{ matrix.db == 'mariadb' && 'mariadb:12@sha256:5b6a1eac15b85b981a61afb89aea2a22bf76b5f58809d05f0bcc13ab6ec44cb8' || '' }}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue