-
Notifications
You must be signed in to change notification settings - Fork 25
/
define_masters.py
executable file
·73 lines (59 loc) · 2.25 KB
/
define_masters.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python3
import os
import shutil
import yaml
BASE_PATH = "autogen/"
config = {"private": {}}
exec(open("master-private.cfg").read(), config, {})
with open("os_info.yaml", encoding="utf-8") as file:
os_info = yaml.safe_load(file)
platforms = {}
for os_name in os_info:
if "install_only" in os_info[os_name] and os_info[os_name]["install_only"]:
continue
for arch in os_info[os_name]["arch"]:
builder_name = arch + "-" + os_name
if arch not in platforms:
platforms[arch] = []
platforms[arch].append(builder_name)
# Clear old configurations
if os.path.exists(BASE_PATH):
shutil.rmtree(BASE_PATH)
IDX = 0
for arch in platforms:
# Create the directory for the architecture that is handled by each master
# If for a given architecture there are more than "max_builds" builds,
# create multiple masters
# "max_builds" is defined is master-private.py
num_masters = (
int(len(platforms[arch]) / config["private"]["master-variables"]["max_builds"])
+ 1
)
for master_id in range(num_masters):
dir_path = BASE_PATH + arch + "-master-" + str(master_id)
os.makedirs(dir_path)
master_config = {}
master_config["builders"] = platforms[arch]
master_config["workers"] = config["private"]["master-variables"]["workers"][
arch
]
starting_port = int(
os.getenv(
"PORT", default=config["private"]["master-variables"]["starting_port"]
)
)
master_config["port"] = starting_port + IDX
master_config["log_name"] = (
"master-docker-" + arch + "-" + str(master_id) + ".log"
)
with open(dir_path + "/master-config.yaml", mode="w", encoding="utf-8") as file:
yaml.dump(master_config, file)
shutil.copyfile("master.cfg", dir_path + "/master.cfg")
shutil.copyfile("master-private.cfg", dir_path + "/master-private.cfg")
buildbot_tac = (
open("buildbot.tac", encoding="utf-8").read() % master_config["log_name"]
)
with open(dir_path + "/buildbot.tac", mode="w", encoding="utf-8") as f:
f.write(buildbot_tac)
IDX += 1
print(arch, len(master_config["builders"]))