mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
21 lines
606 B
Python
21 lines
606 B
Python
from ci_v2.settings.definitions import (
|
|
S3_BUCKET_HTTP_ENDPOINT,
|
|
S3_BUCKET_NAME,
|
|
RunnerLabels,
|
|
)
|
|
|
|
S3_ARTIFACT_PATH = f"{S3_BUCKET_NAME}/artifacts"
|
|
CI_CONFIG_RUNS_ON = [RunnerLabels.CI_SERVICES]
|
|
DOCKER_BUILD_RUNS_ON = [RunnerLabels.CI_SERVICES_EBS]
|
|
CACHE_S3_PATH = f"{S3_BUCKET_NAME}/ci_ch_cache"
|
|
HTML_S3_PATH = f"{S3_BUCKET_NAME}/reports"
|
|
S3_BUCKET_TO_HTTP_ENDPOINT = {S3_BUCKET_NAME: S3_BUCKET_HTTP_ENDPOINT}
|
|
|
|
DOCKERHUB_USERNAME = "robotclickhouse"
|
|
DOCKERHUB_SECRET = "dockerhub_robot_password"
|
|
|
|
CI_DB_DB_NAME = "default"
|
|
CI_DB_TABLE_NAME = "checks"
|
|
|
|
INSTALL_PYTHON_REQS_FOR_NATIVE_JOBS = ""
|