From f0b3f6b9e2e331061f309b328fbcf2794afd0ba4 Mon Sep 17 00:00:00 2001 From: rschoene <rene.schoene@tu-dresden.de> Date: Mon, 19 Apr 2021 16:47:05 +0200 Subject: [PATCH] clone into this directory and not in root --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f99005..7fc6516 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ cache: paths: - .gradle/wrapper - .gradle/caches - - /ttc2018liveContest + - ttc2018liveContest build: image: openjdk:11 @@ -24,12 +24,12 @@ prepareTTCrepo: image: openjdk:11 stage: models script: - - "[ -d /ttc2018liveContest] || git clone --depth=1 https://github.com/TransformationToolContest/ttc2018liveContest.git /ttc2018liveContest" + - "[ -d /ttc2018liveContest ] || git clone --depth=1 https://github.com/TransformationToolContest/ttc2018liveContest.git ttc2018liveContest" - cd solve/src/test/resources - - ln -s /ttc2018liveContest/models . + - ln -s ../../../../ttc2018liveContest/models . artifacts: paths: - - "/ttc2018liveContest/models" + - "ttc2018liveContest/models" - "solve/src/test/resources/models" - "solve/src/test/resources/models/1" - "solve/src/test/resources/models/2" -- GitLab