From 3a2d0bdd1cf0c302848746e7779aae323c235d45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Tue, 2 Jul 2024 10:22:41 +0200 Subject: [PATCH] Use Oracle MySQL containers --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b59f2775..5566348b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,12 +22,16 @@ jobs: - os: ubuntu-22.04 client: "9.0" server: "8.4" + - os: ubuntu-22.04 + client: "9.0" + server: "9.0" runs-on: ${{ matrix.os }} services: mysql: - image: mysql:${{ matrix.server }} + image: container-registry.oracle.com/mysql/community-server:${{ matrix.server }} env: MYSQL_ALLOW_EMPTY_PASSWORD: yes + MYSQL_ROOT_HOST: "%" MYSQL_DATABASE: test ports: - 3306:3306