From 536030c2b219dd8e99a17dbd29fea2e036380e7f Mon Sep 17 00:00:00 2001 From: "Bernhard J. Berger" <bernhard.berger@uni-bremen.de> Date: Thu, 24 Nov 2022 22:38:08 +0100 Subject: [PATCH] New try on building EvoAl. --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b37a7b6c..594be33a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -115,6 +115,7 @@ evoal:compile: ## Remaining unit tests evoal:unit: stage: Unit Test + dependencies: ["evoal:compile"] tags: - docker image: $EVOAL_IMAGE @@ -135,11 +136,12 @@ evoal:unit: evoal:deploy: stage: Release - needs: ["evoal:compile", "evoal:unit"] + dependencies: ["evoal:compile"] tags: - docker image: $EVOAL_IMAGE script: + - mvn $MAVEN_CLI_OPTS -f $PLUGIN_POM install - mvn $MAVEN_CLI_OPTS -f $EVOAL_POM -DskipTests=true deploy only: changes: -- GitLab