From eee715c81f458b619b9e8c195fe85c200663c7eb Mon Sep 17 00:00:00 2001 From: Grzegorz Rola <grola@seostudio.pl> Date: Tue, 26 Mar 2024 17:07:09 +0100 Subject: [PATCH] feature(mysql): disable bin logs --- gitlab-ci-1.2.yml | 2 +- gitlab-ci-free.yml | 3 +-- includes/tests/codeception-parallel.yml | 6 +++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/gitlab-ci-1.2.yml b/gitlab-ci-1.2.yml index 2bed4e1..ce36636 100644 --- a/gitlab-ci-1.2.yml +++ b/gitlab-ci-1.2.yml @@ -26,7 +26,7 @@ stages: include: - project: 'wpdesk/gitlab-ci' - ref: 'master' + ref: 'feature/mysql-bin-logs' file: - '/includes/prepare.yml' - '/includes/translations.yml' diff --git a/gitlab-ci-free.yml b/gitlab-ci-free.yml index db249dc..2ea5b30 100644 --- a/gitlab-ci-free.yml +++ b/gitlab-ci-free.yml @@ -1,6 +1,6 @@ include: - project: 'wpdesk/gitlab-ci' - ref: 'master' + ref: 'feature/mysql-bin-logs' file: '/gitlab-ci-1.2.yml' deploy to repository: @@ -22,4 +22,3 @@ update wpdesk plugins database: upload translations to repo: when: delayed start_in: 30 minutes - diff --git a/includes/tests/codeception-parallel.yml b/includes/tests/codeception-parallel.yml index 3731748..c99da78 100644 --- a/includes/tests/codeception-parallel.yml +++ b/includes/tests/codeception-parallel.yml @@ -24,7 +24,7 @@ prepare codeception parallel: services: - name: mysql:5.6 alias: mysqltests - command: [--max-allowed-packet=67108864] + command: [--max-allowed-packet=67108864,--skip-log-bin] - name: wpdesknet/wordpress:52 alias: wootests artifacts: @@ -89,7 +89,7 @@ prepare codeception parallel: services: - name: mysql:5.6 alias: mysqltests - command: [--max-allowed-packet=67108864] + command: [--max-allowed-packet=67108864,--skip-log-bin] - name: wpdesknet/wordpress:52 alias: wootests - name: selenium/standalone-chrome:latest @@ -158,6 +158,7 @@ prepare codeception parallel: services: - name: mysql:5.6 alias: mysqltests + command: [--max-allowed-packet=67108864,--skip-log-bin] - name: wpdesknet/wordpress:52 alias: wootests - name: selenium/standalone-chrome:latest @@ -204,4 +205,3 @@ codeception code coverage manual: <<: *job-codeception-coverage when: manual allow_failure: true - -- GitLab