ci: Drop MySQL 8.0.13 (#18759)

This commit is contained in:
Iván Ovejero
2025-08-26 10:03:53 +02:00
committed by GitHub
parent aa0c8fac83
commit 1e58e24400
2 changed files with 2 additions and 16 deletions

View File

@@ -10,16 +10,6 @@ services:
tmpfs: tmpfs:
- /var/lib/mysql - /var/lib/mysql
mysql-8.0.13:
image: mysql:8.0.13
environment:
- MYSQL_DATABASE=n8n
- MYSQL_ROOT_PASSWORD=password
ports:
- 3306:3306
tmpfs:
- /var/lib/mysql
mysql-8.4: mysql-8.4:
image: mysql:8.4 image: mysql:8.4
environment: environment:

View File

@@ -80,13 +80,10 @@ jobs:
run: pnpm test:mariadb --testTimeout 120000 run: pnpm test:mariadb --testTimeout 120000
mysql: mysql:
name: MySQL (${{ matrix.service-name }}) name: MySQL 8.4
needs: build needs: build
runs-on: blacksmith-2vcpu-ubuntu-2204 runs-on: blacksmith-2vcpu-ubuntu-2204
timeout-minutes: 20 timeout-minutes: 20
strategy:
matrix:
service-name: ['mysql-8.0.13', 'mysql-8.4']
env: env:
DB_MYSQLDB_PASSWORD: password DB_MYSQLDB_PASSWORD: password
steps: steps:
@@ -99,8 +96,7 @@ jobs:
uses: isbang/compose-action@802a148945af6399a338c7906c267331b39a71af # v2.0.0 uses: isbang/compose-action@802a148945af6399a338c7906c267331b39a71af # v2.0.0
with: with:
compose-file: ./.github/docker-compose.yml compose-file: ./.github/docker-compose.yml
services: | services: mysql-8.4
${{ matrix.service-name }}
- name: Test MySQL - name: Test MySQL
working-directory: packages/cli working-directory: packages/cli