From 86fddee9983dd43008341ab82c3d7c55bef932c6 Mon Sep 17 00:00:00 2001
From: Eduard Frankford <e.frankford@student.uibk.ac.at>
Date: Sat, 21 May 2022 15:09:55 +0200
Subject: [PATCH] check if publish image works

---
 .gitlab-ci.yml | 94 +++++++++++++++++++++++++-------------------------
 1 file changed, 47 insertions(+), 47 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 602fe8545..cc2d3794f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -57,55 +57,55 @@ maven-compile:
     expire_in: 10 days
   needs: []
 
-maven-test:
-  # DinD service is required for Testcontainers
-  services:
-    - docker:20-dind
-  variables:
-    # Instruct Testcontainers to use the daemon of DinD.
-    DOCKER_HOST: 'tcp://docker:2375'
-    DOCKER_TLS_CERTDIR: ''
-  stage: test
-  script:
-    - ./mvnw -ntp verify -P-webapp -Dmaven.repo.local=$MAVEN_USER_HOME -Dspring.profiles.active=testcontainers
-  artifacts:
-    reports:
-      junit:
-        - target/surefire-reports/TEST-*.xml
-        - target/failsafe-reports/TEST-*.xml
-    paths:
-      - target/surefire-reports
-      - target/failsafe-reports
-      - target/site
-    when: always
-    expire_in: 15 days
-  needs: []
+# maven-test:
+#   # DinD service is required for Testcontainers
+#   services:
+#     - docker:20-dind
+#   variables:
+#     # Instruct Testcontainers to use the daemon of DinD.
+#     DOCKER_HOST: 'tcp://docker:2375'
+#     DOCKER_TLS_CERTDIR: ''
+#   stage: test
+#   script:
+#     - ./mvnw -ntp verify -P-webapp -Dmaven.repo.local=$MAVEN_USER_HOME -Dspring.profiles.active=testcontainers
+#   artifacts:
+#     reports:
+#       junit:
+#         - target/surefire-reports/TEST-*.xml
+#         - target/failsafe-reports/TEST-*.xml
+#     paths:
+#       - target/surefire-reports
+#       - target/failsafe-reports
+#       - target/site
+#     when: always
+#     expire_in: 15 days
+#   needs: []
 
-frontend-test:
-  stage: test
-  cache: {}
-  script:
-    - npm install
-    - npm test
-  artifacts:
-    reports:
-      junit: target/test-results/TESTS-results-jest.xml
-    paths:
-      - target/test-results
-      - target/jacoco
-    when: always
-    expire_in: 15 days
-  needs: []
+# frontend-test:
+#   stage: test
+#   cache: {}
+#   script:
+#     - npm install
+#     - npm test
+#   artifacts:
+#     reports:
+#       junit: target/test-results/TESTS-results-jest.xml
+#     paths:
+#       - target/test-results
+#       - target/jacoco
+#     when: always
+#     expire_in: 15 days
+#   needs: []
 
-sonar-analyze:
-  stage: analyze
-  dependencies:
-    - maven-test
-    - frontend-test
-  script:
-    - ./mvnw -ntp org.jacoco:jacoco-maven-plugin:prepare-agent initialize sonar:sonar -Dsonar.organization=codeAbility -Dsonar.host.url=https://qe-sonarqube.uibk.ac.at/ -Dsonar.login=${SONAR_TOKEN_QE} -Dmaven.repo.local=$MAVEN_USER_HOME
-  #    - ./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
+# sonar-analyze:
+#   stage: analyze
+#   dependencies:
+#     - maven-test
+#     - frontend-test
+#   script:
+#     - ./mvnw -ntp org.jacoco:jacoco-maven-plugin:prepare-agent initialize sonar:sonar -Dsonar.organization=codeAbility -Dsonar.host.url=https://qe-sonarqube.uibk.ac.at/ -Dsonar.login=${SONAR_TOKEN_QE} -Dmaven.repo.local=$MAVEN_USER_HOME
+#   #    - ./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
-- 
GitLab