Move MySQL 9 Go test coverage from per-PR to nightly cron (#45549)

This commit is contained in:
Luke Heath
2026-05-14 17:23:56 -05:00
committed by GitHub
parent 267d626383
commit 88fae7fb21
+3 -3
View File
@@ -72,7 +72,7 @@ jobs:
strategy:
matrix:
suite: ["integration-core", "integration-enterprise", "integration-mdm", "fleetctl", "main", "mysql", "service", "vuln"]
mysql: ["mysql:8.0.44", "mysql:9.5.0"]
mysql: ["mysql:8.0.44"]
uses: ./.github/workflows/test-go-suite.yaml
with:
suite: ${{ matrix.suite }}
@@ -82,14 +82,14 @@ jobs:
# ──────────────────────────────────────────────────────────────────────────
# Extended MySQL coverage: only on the nightly cron schedule.
# Tests the same DB-dependent suites against older/intermediate versions.
# Tests the same DB-dependent suites against the other supported versions.
# ──────────────────────────────────────────────────────────────────────────
test-go-extended-mysql:
if: github.event_name == 'schedule'
strategy:
matrix:
suite: ["integration-core", "integration-enterprise", "integration-mdm", "fleetctl", "main", "mysql", "service", "vuln"]
mysql: ["mysql:8.0.42", "mysql:8.4.8"]
mysql: ["mysql:8.0.42", "mysql:8.4.8", "mysql:9.5.0"]
uses: ./.github/workflows/test-go-suite.yaml
with:
suite: ${{ matrix.suite }}