From 0faa2803c60de38b0158e8411f817e6835cbcdc0 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Tue, 4 Feb 2020 14:13:22 +0100 Subject: [PATCH] WIP: pipeline --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fd3bcc7..2f71e23 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,7 +32,7 @@ stages: - deploy # Trigger building of server image and integration tests -.trigger_build: +trigger_build: tags: [ docker ] stage: deploy script: @@ -51,14 +51,14 @@ unittests: - type . - cp config.defaults .config - echo 'DATABASE_USER_HOST_LIST="%,"' >> .config - - echo "MYSQL_USER_PASSWORD=caosdb1234" >> .config + - echo "MYSQL_USER_PASSWORD=$MYSQL_ROOT_PASSWORD" >> .config - echo "MYSQL_HOST=mariadb" >> .config - command -v mysql - ./make_db test-connection - ./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