mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Merge pull request #60811 from ClickHouse/new-private-runners
New private runners
This commit is contained in:
commit
7ecd67fc27
@ -264,6 +264,8 @@ class BuildConfig:
|
||||
def process(field_name: str, field: Union[bool, str]) -> str:
|
||||
if isinstance(field, bool):
|
||||
field = str(field).lower()
|
||||
elif not isinstance(field, str):
|
||||
field = ""
|
||||
if export:
|
||||
return f"export BUILD_{field_name.upper()}={repr(field)}"
|
||||
return f"BUILD_{field_name.upper()}={field}"
|
||||
|
@ -20,11 +20,12 @@ RUNNER_TYPE_LABELS = [
|
||||
"style-checker",
|
||||
"style-checker-aarch64",
|
||||
# private runners
|
||||
"private-style-checker",
|
||||
"private-builder",
|
||||
"private-clickpipes",
|
||||
"private-func-tester",
|
||||
"private-fuzzer-unit-tester",
|
||||
"private-stress-tester",
|
||||
"private-style-checker",
|
||||
]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user