forked from scalyr/scalyr-agent-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_package_new.py
181 lines (147 loc) · 6.5 KB
/
build_package_new.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
# Copyright 2014-2021 Scalyr Inc.
#
# 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.
# This is a new package build script which uses new package build logic.
# usage:
# build_package_new.py <name of the package> --output-dir <output directory>
import logging
import pathlib as pl
import argparse
import sys
if sys.version_info < (3, 8, 0):
raise ValueError("This script requires Python 3.8 or above")
__PARENT_DIR__ = pl.Path(__file__).absolute().parent
__SOURCE_ROOT__ = __PARENT_DIR__
# This file can be executed as script. Add source root to the PYTHONPATH in order to be able to import
# local packages. All such imports also have to be done after that.
sys.path.append(str(__SOURCE_ROOT__))
from agent_build.tools import common
from agent_build.tools import constants
from agent_build import package_builders
_AGENT_BUILD_PATH = __SOURCE_ROOT__ / "agent_build"
common.init_logging()
if __name__ == "__main__":
parser = argparse.ArgumentParser()
# Add subparsers for all packages except docker builders.
subparsers = parser.add_subparsers(dest="package_name", required=True)
for builder_name, builder in package_builders.ALL_PACKAGE_BUILDERS.items():
package_parser = subparsers.add_parser(name=builder_name)
# Define argument for all packages
package_parser.add_argument(
"--locally",
action="store_true",
help="Perform the build on the current system which runs the script. Without that, some packages may be built "
"by default inside the docker.",
)
package_parser.add_argument(
"--no-versioned-file-name",
action="store_true",
dest="no_versioned_file_name",
default=False,
help="If true, will not embed the version number in the artifact's file name. This only "
"applies to the `tarball` and container builders artifacts.",
)
package_parser.add_argument(
"-v",
"--variant",
dest="variant",
default=None,
help="An optional string that is included in the package name to identify a variant "
"of the main release created by a different packager. "
"Most users do not need to use this option.",
)
package_parser.add_argument(
"--debug",
action="store_true",
help="Enable debug mode with additional logging.",
)
# If that's a docker image builder, then add additional commands.
if isinstance(builder, package_builders.ContainerPackageBuilder):
# Add subparser for command that tell to the builder only to build the tarball with the image's filesystem
# This command is used by the source Dockerfile of the image to create agent's filesystem inside the image.
package_parser.add_argument(
"--only-filesystem-tarball",
dest="only_filesystem_tarball",
help="Build only the tarball with the filesystem of the agent. This argument has to accept"
"path to the directory where the tarball is meant to be built. "
"Used by the Dockerfile itself and does not required for the manual build.",
)
package_parser.add_argument(
"--registry",
help="Registry (or repository) name where to push the result image.",
)
package_parser.add_argument(
"--user", help="User name prefix for the image name."
)
package_parser.add_argument(
"--tag",
action="append",
help="The tag that will be applied to every registry that is specified. Can be used multiple times.",
)
package_parser.add_argument(
"--push", action="store_true", help="Push the result docker image."
)
package_parser.add_argument(
"--coverage",
dest="coverage",
action="store_true",
default=False,
help="Enable coverage analysis. Can be used in smoketests. Only works with docker/k8s.",
)
package_parser.add_argument(
"--platforms",
dest="platforms",
default=",".join(
constants.AGENT_DOCKER_IMAGE_SUPPORTED_PLATFORMS_STRING
),
help="Comma delimited list of platforms to build (and optionally push) the image for.",
)
else:
# Add output dir argument. It is required only for non-docker image builds.
package_parser.add_argument(
"--output-dir",
required=True,
type=str,
dest="output_dir",
help="The directory where the result package has to be stored.",
)
args = parser.parse_args()
if args.debug:
logging.basicConfig(level=logging.DEBUG)
loggers = [
logging.getLogger(name)
for name in logging.root.manager.loggerDict # pylint: disable=no-member
]
for logger in loggers:
logger.setLevel(logging.DEBUG)
# Find the builder class.
builder_name = args.package_name
package_builder = package_builders.ALL_PACKAGE_BUILDERS[builder_name]
# If that's a docker image builder handle their arguments too.
if isinstance(package_builder, package_builders.ContainerPackageBuilder):
if args.only_filesystem_tarball:
# Build only image filesystem.
package_builder.build_filesystem_tarball(
output_path=pl.Path(args.only_filesystem_tarball)
)
exit(0)
package_builder.build(
push=args.push,
registry=args.registry,
user=args.user,
tags=args.tag or [],
use_test_version=args.coverage,
platforms=args.platforms.split(","),
)
exit(0)
package_builder.build(locally=args.locally)