From a257adca3197c46402ae662d2b05e4b9b4e67727 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Tue, 4 Feb 2020 11:27:15 +0100 Subject: [PATCH] WIP: pipeline --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b61828..3808aba 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,7 +30,7 @@ stages: - deploy # Trigger building of server image and integration tests -trigger_build: +.trigger_build: tags: [ docker ] stage: deploy script: @@ -46,6 +46,7 @@ unittests: tags: [ docker ] stage: test script: + - systemctl --no-pager status mysqld.service || echo "failed" - cp config.defaults .config - echo "MYSQL_USER_PASSWORD=caosdb1234" >> .config - . .config || echo "failed" @@ -57,7 +58,7 @@ unittests: - ./make_db test --fresh # Build a docker image in which tests for this repository can run -build-testenv: +.build-testenv: tags: [ cached-dind ] image: docker:19.03 stage: setup -- GitLab