From 659d5d030503e18d338d71c806d509af66bf38a2 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Fri, 9 Jul 2021 10:01:13 +0200 Subject: [PATCH] PIPELINE: fix syntax error in .gitlab-ci.yml --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f80f460..cf23522 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -63,7 +63,7 @@ unittests-mariadb: - make pipeline-test SQL_HOST=mariadb # Run the unit tests with MySQL 8 -unittests-mysql-8 +unittests-mysql-8: tags: [ docker ] stage: test # Should not stop the pipeline from continuing. @@ -76,7 +76,7 @@ unittests-mysql-8 - make pipeline-test SQL_HOST=mysql # Run the unit tests with MySQL 5 -unittests-mysql-5 +unittests-mysql-5: tags: [ docker ] stage: test # Should not stop the pipeline from continuing. -- GitLab