forked from The-OpenROAD-Project/bazel-orfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker.bzl
115 lines (105 loc) · 3.85 KB
/
docker.bzl
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
"""Repository rules for exporting file trees from docker images"""
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "patch")
def _impl(repository_ctx):
if repository_ctx.attr.sha256 != "":
image = "{}@sha256:{}".format(repository_ctx.attr.image, repository_ctx.attr.sha256)
else:
image = repository_ctx.attr.image
python_name = "python3"
python = repository_ctx.which(python_name)
if not python:
fail("Failed to find {}.".format(python_name))
docker_name = "docker"
docker = repository_ctx.which(docker_name)
if not docker:
fail("Failed to find {}.".format(docker_name))
if repository_ctx.attr.sha256 == "":
inspect = repository_ctx.execute([
docker,
"inspect",
"--type=image",
image,
])
if inspect.return_code != 0:
fail("Local image {} does not exist: {}".format(image, inspect.stderr), inspect.return_code)
repository_ctx.report_progress("Using local {}.".format(repository_ctx.attr.image))
else:
pull = repository_ctx.execute([
docker,
"pull",
image,
])
if pull.return_code != 0:
fail("Image {} cannot be pulled: {}".format(image, pull.stderr), pull.return_code)
repository_ctx.report_progress("Pulled {}.".format(repository_ctx.attr.image))
created = repository_ctx.execute(
[
docker,
"create",
image,
],
)
if created.return_code != 0:
fail("Failed to create stopped container: {}".format(created.stderr), created.return_code)
container_id = created.stdout.strip()
cp = repository_ctx.execute(
[
docker,
"cp",
"{}:/".format(container_id),
".",
],
)
remove = repository_ctx.execute(
[
docker,
"rm",
container_id,
],
)
if remove.return_code != 0:
print("Container {} has not been removed".format(container_id)) # buildifier: disable=print
if cp.return_code != 0:
fail("Failed to copy image content: {}".format(cp.stderr), cp.return_code)
repository_ctx.report_progress("Extracted {}.".format(repository_ctx.attr.image))
patcher = repository_ctx.path(repository_ctx.attr._patcher).realpath
patchelf = repository_ctx.path(repository_ctx.attr._patchelf).realpath
patcher_result = repository_ctx.execute(
[
patcher,
"--patchelf",
patchelf,
repository_ctx.path("."),
],
)
if patcher_result.return_code != 0:
fail("Failed to run {}:".format(repository_ctx.attr._patcher), patcher_result.stderr)
repository_ctx.report_progress("Fixed `RUNPATH`s for {}.".format(repository_ctx.attr.image))
repository_ctx.symlink(repository_ctx.attr.build_file, "BUILD")
patch(repository_ctx)
docker_pkg = repository_rule(
implementation = _impl,
attrs = {
"build_file": attr.label(mandatory = True),
"image": attr.string(mandatory = True),
"sha256": attr.string(mandatory = False),
"patches": attr.label_list(default = []),
"patch_tool": attr.string(default = ""),
"patch_args": attr.string_list(default = ["-p0"]),
"patch_cmds": attr.string_list(default = []),
"patch_cmds_win": attr.string_list(default = []),
"timeout": attr.int(default = 600),
"_patchelf": attr.label(
doc = "Patchelf binary.",
default = Label("@com_github_nixos_patchelf_download//:bin/patchelf"),
executable = True,
cfg = "exec",
),
"_patcher": attr.label(
doc = "Python script to remap `RUNPATH`s.",
default = Label("//:patcher.py"),
executable = True,
cfg = "exec",
),
},
)