ClickHouse/ci/workflows/pull_request.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

95 lines
2.2 KiB
Python
Raw Normal View History

2024-09-28 05:46:19 +00:00
from typing import List
2024-10-24 11:17:00 +00:00
from praktika import Artifact, Job, Workflow
from praktika.settings import Settings
from ci.settings.definitions import (
2024-09-28 05:46:19 +00:00
BASE_BRANCH,
DOCKERS,
SECRETS,
JobNames,
RunnerLabels,
)
2024-10-24 11:17:00 +00:00
class ArtifactNames:
ch_debug_binary = "clickhouse_debug_binary"
2024-09-28 05:46:19 +00:00
2024-09-30 11:43:03 +00:00
style_check_job = Job.Config(
2024-09-28 05:46:19 +00:00
name=JobNames.STYLE_CHECK,
runs_on=[RunnerLabels.CI_SERVICES],
2024-10-24 11:17:00 +00:00
command="python3 ./ci/jobs/check_style.py",
2024-09-28 05:46:19 +00:00
run_in_docker="clickhouse/style-test",
)
2024-09-30 18:14:56 +00:00
fast_test_job = Job.Config(
2024-10-01 19:19:35 +00:00
name=JobNames.FAST_TEST,
runs_on=[RunnerLabels.BUILDER],
2024-10-24 11:17:00 +00:00
command="python3 ./ci/jobs/fast_test.py",
2024-09-30 18:14:56 +00:00
run_in_docker="clickhouse/fasttest",
2024-10-24 11:17:00 +00:00
digest_config=Job.CacheDigestConfig(
include_paths=[
"./ci/jobs/fast_test.py",
"./tests/queries/0_stateless/",
"./src",
],
),
)
job_build_amd_debug = Job.Config(
name=JobNames.BUILD_AMD_DEBUG,
runs_on=[RunnerLabels.BUILDER],
command="python3 ./ci/jobs/build_clickhouse.py amd_debug",
run_in_docker="clickhouse/fasttest",
digest_config=Job.CacheDigestConfig(
include_paths=[
"./src",
"./contrib/",
"./CMakeLists.txt",
"./PreLoad.cmake",
"./cmake",
"./base",
"./programs",
"./docker/packager/packager",
"./rust",
"./tests/ci/version_helper.py",
],
),
provides=[ArtifactNames.ch_debug_binary],
2024-09-30 18:14:56 +00:00
)
2024-09-28 05:46:19 +00:00
workflow = Workflow.Config(
name="PR",
event=Workflow.Event.PULL_REQUEST,
base_branches=[BASE_BRANCH],
jobs=[
2024-09-30 11:43:03 +00:00
style_check_job,
2024-09-30 18:14:56 +00:00
fast_test_job,
2024-10-24 11:17:00 +00:00
job_build_amd_debug,
],
artifacts=[
Artifact.Config(
name=ArtifactNames.ch_debug_binary,
type=Artifact.Type.S3,
path=f"{Settings.TEMP_DIR}/build/programs/clickhouse",
)
2024-09-28 05:46:19 +00:00
],
dockers=DOCKERS,
secrets=SECRETS,
enable_cache=True,
enable_report=True,
enable_merge_ready_status=True,
)
WORKFLOWS = [
workflow,
] # type: List[Workflow.Config]
if __name__ == "__main__":
2024-10-01 19:19:35 +00:00
# local job test inside praktika environment
2024-09-28 05:46:19 +00:00
from praktika.runner import Runner
2024-10-01 19:19:35 +00:00
Runner().run(workflow, fast_test_job, docker="fasttest", dummy_env=True)