Bumping MySQL 8.4.3->8.4.5 and 9.1.0->9.3.0 in tests. (#28767)

I forced a test run on 9.3.0 (which only runs nightly be default).
This commit is contained in:
Victor Lyuboslavsky
2025-05-02 13:40:11 -05:00
committed by GitHub
parent 34010b1b4a
commit 3d3d43864a
3 changed files with 8 additions and 8 deletions
+6 -6
View File
@@ -44,27 +44,27 @@ jobs:
matrix:
suite: ["integration-core", "integration-enterprise", "integration-mdm", "fast", "fleetctl", "main", "mysql", "scripts", "service", "vuln"]
os: [ubuntu-latest]
mysql: ["mysql:8.0.32", "mysql:8.0.36", "mysql:8.4.3", "mysql:9.1.0"] # make sure to update supported versions docs when this changes
mysql: ["mysql:8.0.32", "mysql:8.0.36", "mysql:8.4.5", "mysql:9.3.0"] # make sure to update supported versions docs when this changes
isCron:
- ${{ github.event_name == 'schedule' }}
exclude:
- isCron: false
mysql: "mysql:9.1.0" # Only run MySQL 9 tests on cron schedule
mysql: "mysql:9.3.0" # Only run MySQL 9 tests on cron schedule
- isCron: false
mysql: "mysql:8.0.32" # Only run MySQL 8.0.32 tests on cron schedule
# The suites below do not need MySQL, so we exclude additional MySQL options from the above matrix.
- suite: "fast"
mysql: "mysql:8.0.32" # We must make sure that at least 1 instance of this suite will run, which is 8.0.36 in this case
- suite: "fast"
mysql: "mysql:8.4.3"
mysql: "mysql:8.4.5"
- suite: "fast"
mysql: "mysql:9.1.0"
mysql: "mysql:9.3.0"
- suite: "scripts"
mysql: "mysql:8.0.32"
- suite: "scripts"
mysql: "mysql:8.4.3"
mysql: "mysql:8.4.5"
- suite: "scripts"
mysql: "mysql:9.1.0"
mysql: "mysql:9.3.0"
# Don't cancel other jobs if one test suite fails. Since our product teams are tightly coupled, we never want to see our tests fail due
# to an unrelated issue in another product area.
continue-on-error: true