# cicd-framework **Repository Path**: lizuzhao/cicd-framework ## Basic Information - **Project Name**: cicd-framework - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-04 - **Last Updated**: 2025-10-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README gitgr# Data Processing Platform 数据处理平台 ## build ### 代码格式化 ```shell ./gradlew spotlessApply ``` ### 构建 ```shell ./gradlew build -x test ./gradlew clean build -x test ./gradlew test -Dtest.maxParallelForks=4 testCodeCoverageReport --continue -PcreateReports ./gradlew clean build -x test --max-workers=4 --no-build-cache --refresh-dependencies ./gradlew spotlessApply & ./gradlew test --max-workers=4 --rerun testCodeCoverageReport --continue -PcreateReports ``` ### 强制重跑测试 ```shell ./gradlew test --max-workers=4 --rerun testCodeCoverageReport --continue -PcreateReports ## 只跑 integration-test ./gradlew test -p integration-test --max-workers=4 --rerun testCodeCoverageReport --continue -PcreateReports ## 跳过 integration-test ./gradlew test -PskipProjectTests=integration-test --max-workers=4 --rerun testCodeCoverageReport --continue -PcreateReports ```