diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 602fe8545039255df54b5abc9f926ba26d75f0a9..cc2d3794f6553ab51ed4388aa89a66ef485ddd82 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