From f45f99dc67f21abe65ff860e591183b8d55c77ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 14 Jun 2023 06:16:46 +0200 Subject: [PATCH 1/4] Try MariaDB upgrade --- .github/workflows/custom/after-install/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/custom/after-install/action.yml b/.github/workflows/custom/after-install/action.yml index 866c68cb..618c1845 100644 --- a/.github/workflows/custom/after-install/action.yml +++ b/.github/workflows/custom/after-install/action.yml @@ -14,7 +14,7 @@ runs: - uses: ankane/setup-mariadb@v1 if: (matrix.config.mysql_server == '') || ! matrix.config.mysql_server with: - mariadb-version: 10.9 + mariadb-version: 11.0 - uses: ankane/setup-mysql@v1 if: matrix.config.mysql_server From a8fe79c58f1529a2930ee48101c53d05444223ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 14 Jun 2023 06:22:02 +0200 Subject: [PATCH 2/4] Try quotes --- .github/workflows/custom/after-install/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/custom/after-install/action.yml b/.github/workflows/custom/after-install/action.yml index 618c1845..56037e3b 100644 --- a/.github/workflows/custom/after-install/action.yml +++ b/.github/workflows/custom/after-install/action.yml @@ -14,7 +14,7 @@ runs: - uses: ankane/setup-mariadb@v1 if: (matrix.config.mysql_server == '') || ! matrix.config.mysql_server with: - mariadb-version: 11.0 + mariadb-version: "11.0" - uses: ankane/setup-mysql@v1 if: matrix.config.mysql_server From 092a70c6687a9013ef96e477b8f008abf05df83a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Fri, 6 Oct 2023 15:50:42 +0200 Subject: [PATCH 3/4] Try 11.1 --- .github/workflows/custom/after-install/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/custom/after-install/action.yml b/.github/workflows/custom/after-install/action.yml index 56037e3b..aa77c76d 100644 --- a/.github/workflows/custom/after-install/action.yml +++ b/.github/workflows/custom/after-install/action.yml @@ -14,7 +14,7 @@ runs: - uses: ankane/setup-mariadb@v1 if: (matrix.config.mysql_server == '') || ! matrix.config.mysql_server with: - mariadb-version: "11.0" + mariadb-version: "11.1" - uses: ankane/setup-mysql@v1 if: matrix.config.mysql_server From ccf60130afa7c2aed5fd4716741bc325561d5390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Fri, 6 Oct 2023 16:14:12 +0200 Subject: [PATCH 4/4] Remove mariadb-connector-c if it exists --- .github/workflows/custom/after-install/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/custom/after-install/action.yml b/.github/workflows/custom/after-install/action.yml index aa77c76d..442c08b6 100644 --- a/.github/workflows/custom/after-install/action.yml +++ b/.github/workflows/custom/after-install/action.yml @@ -11,6 +11,12 @@ runs: sudo apt purge -y mysql-server shell: bash + - name: Purge mariadb-connector-c if it exists + if: runner.os == 'macOS' + run: | + brew unlink mariadb-connector-c || true + shell: bash + - uses: ankane/setup-mariadb@v1 if: (matrix.config.mysql_server == '') || ! matrix.config.mysql_server with: