From 513a58361be76a8271721d07709c03c48bd5b0cd Mon Sep 17 00:00:00 2001 From: Daniel Hornung <d.hornung@indiscale.com> Date: Wed, 8 Jun 2022 16:10:42 +0200 Subject: [PATCH] WIP TEST: no test --- .gitlab-ci.yml | 86 +++++++++++++++++++++++++------------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7939e88..812d054 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,7 +27,7 @@ variables: image: $CI_REGISTRY_IMAGE stages: - setup - # - test + - test - deploy ######## Setup ######## @@ -52,48 +52,48 @@ build-testenv: ######## Test ######## -# Run the unit tests with MariaDB -unittests-mariadb: - tags: [ docker ] - stage: test - services: - - mariadb:10.4 - - 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 - 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 ] - 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: - # remove some lines from autotap because the checks of column default - # values don't work with mysql-5 - - sed -i "/col_default_is.*NULL/d" tests/test_autotap.sql - - sed -i "/col_default_is.*INACTIVE/d" tests/test_autotap.sql - - sed -i "/col_default_is.*SHA/d" tests/test_autotap.sql - - make pipeline-test SQL_HOST=mysql +# # Run the unit tests with MariaDB +# unittests-mariadb: +# tags: [ docker ] +# stage: test +# services: +# - mariadb:10.4 + +# 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 +# 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 ] +# 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: +# # remove some lines from autotap because the checks of column default +# # values don't work with mysql-5 +# - sed -i "/col_default_is.*NULL/d" tests/test_autotap.sql +# - sed -i "/col_default_is.*INACTIVE/d" tests/test_autotap.sql +# - sed -i "/col_default_is.*SHA/d" tests/test_autotap.sql +# - make pipeline-test SQL_HOST=mysql ######## Deploy ######## -- GitLab