From d5c3b4c5c75d4071fbc5b543cb5e76855e3ca9e1 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Thu, 16 Feb 2023 09:48:36 +0530 Subject: [PATCH] test: increase ci-cd timeout, docker compose correction Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- .github/workflows/ci-cd.yml | 2 +- tests/playwright/scripts/docker-compose-mysql-playwright.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 2b3c64550b..0dbed85501 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -27,7 +27,7 @@ concurrency: jobs: unit-tests: runs-on: ubuntu-20.04 - timeout-minutes: 30 + timeout-minutes: 40 if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node diff --git a/tests/playwright/scripts/docker-compose-mysql-playwright.yml b/tests/playwright/scripts/docker-compose-mysql-playwright.yml index 4c7638e689..c13605a2eb 100644 --- a/tests/playwright/scripts/docker-compose-mysql-playwright.yml +++ b/tests/playwright/scripts/docker-compose-mysql-playwright.yml @@ -4,10 +4,11 @@ version: "3.5" # disabling default sql-mode set to only_full_group_by services: xc-mysql-sakila-db: - network_mode: host image: mysql:8.0 command: mysqld --sql_mode="" restart: always + ports: + - 3306:3306 environment: MYSQL_ROOT_PASSWORD: password volumes: