2019-08-11 15:04:04 +03:00
|
|
|
name: migration tests
|
2019-08-11 14:58:37 +03:00
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
2022-11-14 15:00:50 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-05-08 00:23:31 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-11-26 13:08:19 +08:00
|
|
|
version: [mysql-5.7.25,mysql-8.0.16,PerconaServer-8.0.21]
|
2019-08-11 14:58:37 +03:00
|
|
|
|
|
|
|
steps:
|
2020-06-28 08:39:16 +03:00
|
|
|
- uses: actions/checkout@v2
|
2019-08-11 14:58:37 +03:00
|
|
|
|
2022-07-07 00:05:23 +02:00
|
|
|
- name: Set up Go
|
2019-08-11 14:58:37 +03:00
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
2022-07-07 00:05:23 +02:00
|
|
|
go-version: 1.17
|
2019-08-11 14:58:37 +03:00
|
|
|
|
2019-08-11 15:04:04 +03:00
|
|
|
- name: migration tests
|
2021-05-08 00:23:31 +02:00
|
|
|
env:
|
|
|
|
TEST_MYSQL_VERSION: ${{ matrix.version }}
|
2019-08-11 14:58:37 +03:00
|
|
|
run: script/cibuild-gh-ost-replica-tests
|