Add MySQL 8.4 Support #1050
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: migration tests | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [mysql-5.7.25,mysql-8.0.16,PerconaServer-8.0.21] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: migration tests | |
env: | |
TEST_MYSQL_VERSION: ${{ matrix.version }} | |
run: script/cibuild-gh-ost-replica-tests | |
docker-tests: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
image: ['mysql:8.4.3'] | |
env: | |
TEST_MYSQL_IMAGE: ${{ matrix.image }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup environment | |
run: script/docker-gh-ost-replica-tests up | |
- name: Run tests | |
run: script/docker-gh-ost-replica-tests run | |
- name: Teardown environment | |
if: always() | |
run: script/docker-gh-ost-replica-tests down | |