forked from grpc/grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage_targets.py
209 lines (177 loc) · 6.16 KB
/
package_targets.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/usr/bin/env python3
# Copyright 2016 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Definition of targets to build distribution packages."""
import os.path
import sys
sys.path.insert(0, os.path.abspath(".."))
import python_utils.jobset as jobset
def create_docker_jobspec(
name,
dockerfile_dir,
shell_command,
environ={},
flake_retries=0,
timeout_retries=0,
):
"""Creates jobspec for a task running under docker."""
environ = environ.copy()
docker_args = []
for k, v in list(environ.items()):
docker_args += ["-e", "%s=%s" % (k, v)]
docker_env = {
"DOCKERFILE_DIR": dockerfile_dir,
"DOCKER_RUN_SCRIPT": "tools/run_tests/dockerize/docker_run.sh",
"DOCKER_RUN_SCRIPT_COMMAND": shell_command,
"OUTPUT_DIR": "artifacts",
}
jobspec = jobset.JobSpec(
cmdline=["tools/run_tests/dockerize/build_and_run_docker.sh"]
+ docker_args,
environ=docker_env,
shortname="build_package.%s" % (name),
timeout_seconds=30 * 60,
flake_retries=flake_retries,
timeout_retries=timeout_retries,
)
return jobspec
def create_jobspec(
name,
cmdline,
environ=None,
cwd=None,
shell=False,
flake_retries=0,
timeout_retries=0,
cpu_cost=1.0,
):
"""Creates jobspec."""
jobspec = jobset.JobSpec(
cmdline=cmdline,
environ=environ,
cwd=cwd,
shortname="build_package.%s" % (name),
timeout_seconds=10 * 60,
flake_retries=flake_retries,
timeout_retries=timeout_retries,
cpu_cost=cpu_cost,
shell=shell,
)
return jobspec
class CSharpPackage:
"""Builds C# packages."""
def __init__(self, platform):
self.platform = platform
self.labels = ["package", "csharp", self.platform]
self.name = "csharp_package_nuget_%s" % self.platform
self.labels += ["nuget"]
def pre_build_jobspecs(self):
return []
def build_jobspec(self, inner_jobs=None):
del inner_jobs # arg unused as there is little opportunity for parallelizing
environ = {
"GRPC_CSHARP_BUILD_SINGLE_PLATFORM_NUGET": os.getenv(
"GRPC_CSHARP_BUILD_SINGLE_PLATFORM_NUGET", ""
)
}
build_script = "src/csharp/build_nuget.sh"
if self.platform == "linux":
return create_docker_jobspec(
self.name,
"tools/dockerfile/test/csharp_debian11_x64",
build_script,
environ=environ,
)
else:
repo_root = os.path.join(
os.path.dirname(os.path.abspath(__file__)), "..", "..", ".."
)
environ["EXTERNAL_GIT_ROOT"] = repo_root
return create_jobspec(
self.name, ["bash", build_script], environ=environ
)
def __str__(self):
return self.name
class RubyPackage:
"""Collects ruby gems created in the artifact phase"""
def __init__(self):
self.name = "ruby_package"
self.labels = ["package", "ruby", "linux"]
def pre_build_jobspecs(self):
return []
def build_jobspec(self, inner_jobs=None):
del inner_jobs # arg unused as this step simply collects preexisting artifacts
return create_docker_jobspec(
self.name,
"tools/dockerfile/grpc_artifact_centos6_x64",
"tools/run_tests/artifacts/build_package_ruby.sh",
)
class PythonPackage:
"""Collects python eggs and wheels created in the artifact phase"""
def __init__(self, platform="", arch=""):
self.name = "python_package"
self.labels = ["package", "python", "linux"]
self.platform = platform
self.arch = arch
if self.platform:
self.labels.append(platform)
self.name += "_" + platform
if self.arch:
self.labels.append(arch)
self.name += "_" + arch
def pre_build_jobspecs(self):
return []
def build_jobspec(self, inner_jobs=None):
del inner_jobs # arg unused as this step simply collects preexisting artifacts
# since the python package build does very little, we can use virtually
# any image that has new-enough python, so reusing one of the images used
# for artifact building seems natural.
dockerfile_dir = (
"tools/dockerfile/grpc_artifact_python_manylinux2014_x64"
)
if "musllinux_1_1" in self.platform and "aarch64" in self.arch:
dockerfile_dir = (
"tools/dockerfile/grpc_artifact_python_musllinux_1_1_aarch64"
)
return create_docker_jobspec(
self.name,
dockerfile_dir,
"tools/run_tests/artifacts/build_package_python.sh",
environ={"PYTHON": "/opt/python/cp39-cp39/bin/python"},
)
class PHPPackage:
"""Copy PHP PECL package artifact"""
def __init__(self):
self.name = "php_package"
self.labels = ["package", "php", "linux"]
def pre_build_jobspecs(self):
return []
def build_jobspec(self, inner_jobs=None):
del inner_jobs # arg unused as this step simply collects preexisting artifacts
return create_docker_jobspec(
self.name,
"tools/dockerfile/grpc_artifact_centos6_x64",
"tools/run_tests/artifacts/build_package_php.sh",
)
def targets():
"""Gets list of supported targets"""
return [
CSharpPackage("linux"),
CSharpPackage("macos"),
CSharpPackage("windows"),
RubyPackage(),
PythonPackage(),
PythonPackage("musllinux_1_1", "aarch64"),
PHPPackage(),
]