From 9119ebf8d7e9f60da89d474ab32bf02213584be7 Mon Sep 17 00:00:00 2001 From: Nick Liu Date: Sat, 28 Oct 2023 12:35:45 -0500 Subject: [PATCH] CI: Remove uninteresting service versions Now, we just test the PHP and MySQL/MariaDB versions that have big changes starting from the lowest versions we support up to the highest versions we support. --- .github/workflows/test-unit.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 33f422cf78..5d0ff2a73a 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -18,25 +18,15 @@ jobs: interpreter: - image: php:5.6 - image: php:7.0 - - image: php:7.1 - - image: php:7.2 - - image: php:7.3 - image: php:7.4 - - image: php:8.0 - image: php:8.1 db: - image: mysql:5.5 - - image: mysql:5.6 - - image: mysql:5.7 - image: bitnami/mysql:8.0 - image: mariadb:10.0 - - image: mariadb:10.1 - - image: mariadb:10.2 - - image: mariadb:10.3 - - image: mariadb:10.4 - - image: mariadb:10.5 - image: mariadb:10.6 - - image: mariadb:10.10 + - image: mariadb:10.11 + - image: mariadb:11.0 runs-on: ubuntu-latest container: image: ${{ matrix.interpreter.image }} @@ -45,7 +35,9 @@ jobs: image: ${{ matrix.db.image }} env: MYSQL_ROOT_PASSWORD: 'Database Password for Continuous Integration' + MARIADB_ROOT_PASSWORD: 'Database Password for Continuous Integration' MYSQL_DATABASE: 'app' + MARIADB_DATABASE: 'app' MYSQL_AUTHENTICATION_PLUGIN: 'mysql_native_password' MYSQL_CHARACTER_SET: 'utf8mb3' options: >-