From 41b21c0be59953b83003b4bd26318b8824f4f6b2 Mon Sep 17 00:00:00 2001 From: rschoene <rene.schoene@tu-dresden.de> Date: Sat, 4 Jan 2020 13:37:57 +0100 Subject: [PATCH] Fix CI by excluding drast submodule from build and test. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8bc1061..899deca 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,7 +15,7 @@ build: - dockered stage: build script: - - ./gradlew --console=plain --build-cache assemble + - ./gradlew --console=plain --build-cache assemble -x ":drast:assemble" cache: key: "$CI_COMMIT_REF_NAME" policy: push @@ -29,7 +29,7 @@ test: - dockered stage: test script: - - ./gradlew --continue --console=plain check + - ./gradlew --continue --console=plain check -x ":drast:check" cache: key: "$CI_COMMIT_REF_NAME" policy: pull -- GitLab