From fe38a9384dd08806b6353208cc6e7b1d22caaa4f Mon Sep 17 00:00:00 2001 From: Dmitry Patsura Date: Mon, 30 Nov 2020 12:55:00 +0300 Subject: [PATCH] misc(ci): Integration tests with MySQL 8.0 --- .github/workflows/push.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 29f5851f29913..b21449d83cab8 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -395,7 +395,14 @@ jobs: yarn lerna run --concurrency 1 --stream --no-prefix integration:mysql env: TEST_MYSQL_VERSION: 5.7 - - name: Run Clickhouse Integration with 21.1.2 + - name: Run MySQL Integration with 8 + timeout-minutes: 10 + run: | + docker pull mysql:${TEST_MYSQL_VERSION} + yarn lerna run --concurrency 1 integration:mysql + env: + TEST_MYSQL_VERSION: 8.0 + - name: Run Clickhouse Integration with 20.6 timeout-minutes: 10 run: | docker pull yandex/clickhouse-server:${TEST_CLICKHOUSE_VERSION}