mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #64824 from ClickHouse/ci_coverage_jobs_fix
CI: Move coverage build to non-special build list
This commit is contained in:
commit
c14d1b482f
3
.github/workflows/master.yml
vendored
3
.github/workflows/master.yml
vendored
@ -106,7 +106,8 @@ jobs:
|
||||
data: ${{ needs.RunConfig.outputs.data }}
|
||||
# stage for jobs that do not prohibit merge
|
||||
Tests_3:
|
||||
needs: [RunConfig, Builds_1]
|
||||
# Test_3 should not wait for Test_1/Test_2 and should not be blocked by them on master branch since all jobs need to run there.
|
||||
needs: [RunConfig, Builds_1, Builds_2]
|
||||
if: ${{ !failure() && !cancelled() && contains(fromJson(needs.RunConfig.outputs.data).stages_data.stages_to_do, 'Tests_3') }}
|
||||
uses: ./.github/workflows/reusable_test_stage.yml
|
||||
with:
|
||||
|
2
.github/workflows/pull_request.yml
vendored
2
.github/workflows/pull_request.yml
vendored
@ -135,7 +135,7 @@ jobs:
|
||||
data: ${{ needs.RunConfig.outputs.data }}
|
||||
# stage for jobs that do not prohibit merge
|
||||
Tests_3:
|
||||
needs: [RunConfig, Tests_1, Tests_2]
|
||||
needs: [RunConfig, Builds_1, Tests_1, Builds_2, Tests_2]
|
||||
if: ${{ !failure() && !cancelled() && contains(fromJson(needs.RunConfig.outputs.data).stages_data.stages_to_do, 'Tests_3') }}
|
||||
uses: ./.github/workflows/reusable_test_stage.yml
|
||||
with:
|
||||
|
@ -593,8 +593,6 @@ class CIConfig:
|
||||
stage_type = CIStages.BUILDS_2
|
||||
elif self.is_docs_job(job_name):
|
||||
stage_type = CIStages.TESTS_1
|
||||
elif job_name == JobNames.BUILD_CHECK_SPECIAL:
|
||||
stage_type = CIStages.TESTS_2
|
||||
elif self.is_test_job(job_name):
|
||||
if job_name in CI_CONFIG.test_configs:
|
||||
required_build = CI_CONFIG.test_configs[job_name].required_build
|
||||
@ -854,6 +852,14 @@ class CIConfig:
|
||||
f"The requirement '{test_config}' for "
|
||||
f"'{test_name}' is not found in builds"
|
||||
)
|
||||
if (
|
||||
test_config.required_build
|
||||
and test_config.required_build
|
||||
not in self.builds_report_config[JobNames.BUILD_CHECK].builds
|
||||
):
|
||||
errors.append(
|
||||
f"Test job' required build must be from [{JobNames.BUILD_CHECK}] list"
|
||||
)
|
||||
|
||||
if errors:
|
||||
raise KeyError("config contains errors", errors)
|
||||
@ -1068,6 +1074,8 @@ CI_CONFIG = CIConfig(
|
||||
Build.PACKAGE_MSAN,
|
||||
Build.PACKAGE_DEBUG,
|
||||
Build.BINARY_RELEASE,
|
||||
Build.PACKAGE_RELEASE_COVERAGE,
|
||||
Build.FUZZERS,
|
||||
]
|
||||
),
|
||||
JobNames.BUILD_CHECK_SPECIAL: BuildReportConfig(
|
||||
@ -1084,8 +1092,6 @@ CI_CONFIG = CIConfig(
|
||||
Build.BINARY_LOONGARCH64,
|
||||
Build.BINARY_AMD64_COMPAT,
|
||||
Build.BINARY_AMD64_MUSL,
|
||||
Build.PACKAGE_RELEASE_COVERAGE,
|
||||
Build.FUZZERS,
|
||||
]
|
||||
),
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user