From df358e01f4f003c15443da24db6171ccdbe2fdb2 Mon Sep 17 00:00:00 2001 From: Eduard Frankford <e.frankford@student.uibk.ac.at> Date: Fri, 13 May 2022 08:55:05 +0200 Subject: [PATCH] changed stages because artifacts are too big to upload --- .gitlab-ci.yml | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8fa3d5615..2795ce76c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ stages: - build # - test # - analyze - - package + # - package - release # - deploy @@ -107,16 +107,16 @@ maven-compile: # # - ./mvnw -ntp org.jacoco:jacoco-maven-plugin:prepare-agent initialize sonar:sonar -Dsonar.organization=codeAbility -Dsonar.host.url=https://server.arctis.at/sonar/ -Dsonar.login=${SONAR_TOKEN} -Dmaven.repo.local=$MAVEN_USER_HOME # allow_failure: true -maven-package: - stage: package - script: - - ./mvnw -ntp verify -Pprod -DskipTests -Dmaven.repo.local=$MAVEN_USER_HOME - artifacts: - paths: - - target/*.jar - - target/classes - expire_in: 15 days - # Uncomment the following line to use gitlabs container registry. You need to adapt the REGISTRY_URL in case you are not using gitlab.com +# maven-package: +# stage: package +# script: +# - ./mvnw -ntp verify -Pprod -DskipTests -Dmaven.repo.local=$MAVEN_USER_HOME +# artifacts: +# paths: +# - target/*.jar +# - target/classes +# expire_in: 15 days +# Uncomment the following line to use gitlabs container registry. You need to adapt the REGISTRY_URL in case you are not using gitlab.com docker-push: stage: release variables: @@ -124,8 +124,7 @@ docker-push: IMAGE_TAG: sharing-codeability.uibk.ac.at:5051/sharing/codeability-sharing-platform # USERNAME: root # PASSWORD: dgL5n2bqawsFnfQrwgHp - dependencies: - - maven-package script: + - ./mvnw -ntp verify -Pprod -DskipTests -Dmaven.repo.local=$MAVEN_USER_HOME - ./mvnw -ntp jib:build -Pprod -Djib.to.image=$IMAGE_TAG -Djib.to.auth.username=test -Djib.to.auth.password=WtUx7g-KRxsN2UkeE1zk -Dmaven.repo.local=$MAVEN_USER_HOME - when: manual + when: always -- GitLab