From 6e944693fd373a89b969204fdc3660ef640e659e Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Wed, 18 Oct 2023 20:14:39 +0200
Subject: [PATCH] PIPELINE: remove MySQL 8 tests

---
 .gitlab-ci.yml  | 15 ---------------
 CHANGELOG.md    |  2 +-
 README_SETUP.md |  2 +-
 3 files changed, 2 insertions(+), 17 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4709a64..3878ddb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -62,21 +62,6 @@ unittests-mariadb:
   script:
     - make pipeline-test SQL_HOST=mariadb
 
-# Run the unit tests with MySQL 8
-unittests-mysql-8:
-  tags: [ docker ]
-  stage: test
-  # Should not stop the pipeline from continuing.
-  allow_failure: true
-  services:
-    - name: mysql:8.0.32
-      command: ["--default-authentication-plugin=mysql_native_password"]
-
-  script:
-    - sed "s/NO_AUTO_CREATE_USER,//" -i tests/example.dump.sql
-    - rm tests/test_autotap.sql
-    - make pipeline-test SQL_HOST=mysql
-
 # Run the unit tests with MySQL 5
 unittests-mysql-5:
   tags: [ docker ]
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7b55ee1..778879e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Deprecated ###
 
-* MySQL Support. Last version which is known to work well with LinkAhead is MySQL 5.6
+* MySQL Support. Last version which is known to work well with LinkAhead is MySQL 5.7.36
 
 ### Removed ###
 
diff --git a/README_SETUP.md b/README_SETUP.md
index 52ee110..95f975d 100644
--- a/README_SETUP.md
+++ b/README_SETUP.md
@@ -2,7 +2,7 @@
 
 ## Dependencies
 
-* `MariaDB Client 10.1` or later, `MySQL Client >=5.5, <=5.6`.
+* `MariaDB Client 10.1` or later, `MySQL Client >=5.5, <=5.7.36`.
 * make
 
 ## Create the configuration
-- 
GitLab