IntegrateService/.gitlab-ci.yml

68 lines
1.4 KiB
YAML
Raw Normal View History

2024-03-07 09:03:46 +00:00
stages :
- sonarqube-check
- compile
2024-03-12 03:05:49 +00:00
- integration-test
2024-03-07 09:03:46 +00:00
- package
# 代码质量检查
2024-03-07 09:20:57 +00:00
sonarqube-check:
stage: sonarqube-check
tags:
2024-03-07 09:03:46 +00:00
- linux-maven
2024-03-07 09:20:57 +00:00
image: maven:3.9.3-eclipse-temurin-17
variables:
2024-03-07 09:03:46 +00:00
SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache
2024-03-07 09:20:57 +00:00
GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task
cache:
key: "${CI_JOB_NAME}"
2024-03-07 09:03:46 +00:00
paths:
- .sonar/cache
2024-03-07 09:20:57 +00:00
script:
2024-03-12 03:05:49 +00:00
- mvn verify sonar:sonar
2024-03-07 09:03:46 +00:00
allow_failure: true
2024-03-07 09:20:57 +00:00
only:
2024-03-07 09:03:46 +00:00
- merge_requests
- master
- main
- develop
# 编译
compile :
stage : compile
tags :
- linux-maven
only :
- master
script:
- echo "=============== 开始编译任务 ==============="
- mvn clean compile -DskipTests
2024-03-12 03:05:49 +00:00
# 集成测试
integration-test:
stage : integration-test
tags :
- linux-maven
only :
- master
script :
- echo "=============== 开始集成测试 ==============="
- mvn test
artifacts:
when : always
reports:
junit:
- target/surefire-reports/TEST-*.xml
- target/failsafe-reports/TEST-*.xml
dependencies:
- compile
2024-03-07 09:03:46 +00:00
# 打包
package :
stage : package
tags :
- linux-maven
only :
- master
script:
- echo "=============== 开始打包任务 ==============="
2024-03-12 03:05:49 +00:00
- mvn clean package