Skip to content
Snippets Groups Projects
Verified Commit f7e6c359 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

REVIEW: add unit tests agains 5.7

parent 286db9e7
No related branches found
No related tags found
2 merge requests!7Release v5.0.0,!4CI pipeline for mysql unit tests
Pipeline #10089 failed
...@@ -62,8 +62,8 @@ unittests-mariadb: ...@@ -62,8 +62,8 @@ unittests-mariadb:
script: script:
- make pipeline-test SQL_HOST=mariadb - make pipeline-test SQL_HOST=mariadb
# Run the unit tests with MySQL # Run the unit tests with MySQL 8
unittests-mysql: unittests-mysql-8
tags: [ docker ] tags: [ docker ]
stage: test stage: test
# Should not stop the pipeline from continuing. # Should not stop the pipeline from continuing.
...@@ -75,6 +75,19 @@ unittests-mysql: ...@@ -75,6 +75,19 @@ unittests-mysql:
script: script:
- make pipeline-test SQL_HOST=mysql - make pipeline-test SQL_HOST=mysql
# Run the unit tests with MySQL 5
unittests-mysql-5
tags: [ docker ]
stage: test
# Should not stop the pipeline from continuing.
allow_failure: true
services:
- name: mysql:5.7
command: ["--default-authentication-plugin=mysql_native_password"]
script:
- make pipeline-test SQL_HOST=mysql
######## Deploy ######## ######## Deploy ########
# Trigger building of server image and integration tests # Trigger building of server image and integration tests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment