From c24dc46672e39da2737f126b4aaf95f962d47088 Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Wed, 30 Jun 2021 09:49:33 +0200 Subject: [PATCH] FIX: Add tags to CI --- .gitlab-ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 354eec9..4a59cc3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,8 +13,17 @@ # [1]: http://julialang.org/ # [2]: https://docs.julialang.org/en/v1/manual/documentation/index.html +variables: + CI_REGISTRY_IMAGE: $CI_REGISTRY/caosdb/src/caosdb-julialib/testenv:latest + +stages: + - test + - deploy + # Below is the template to run your tests in Julia .test_template: &test_definition + # Use `docker` runners + tags: [ docker ] # Uncomment below if you would like to run the tests on specific # references only, such as the branches `master`, `development`, # etc. @@ -57,7 +66,8 @@ test:1.6: # Example documentation deployment pages: - image: julia:0.7 + tags: [ cached-dind ] + image: julia:1.0 stage: deploy script: - apt-get update -qq && apt-get install -y git # needed by Documenter -- GitLab