mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 18:12:02 +00:00
22 lines
635 B
Python
22 lines
635 B
Python
# aux settings:
|
|
S3_BUCKET_NAME = "clickhouse-builds"
|
|
S3_BUCKET_HTTP_ENDPOINT = "clickhouse-builds.s3.amazonaws.com"
|
|
|
|
# praktika settings:
|
|
MAIN_BRANCH = "master"
|
|
|
|
S3_ARTIFACT_PATH = f"{S3_BUCKET_NAME}/artifacts"
|
|
CI_CONFIG_RUNS_ON = ["ci_services"]
|
|
DOCKER_BUILD_RUNS_ON = ["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 = ""
|