-
Notifications
You must be signed in to change notification settings - Fork 25
/
pins_infra_deps.bzl
256 lines (249 loc) · 13.1 KB
/
pins_infra_deps.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
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
"""Third party dependencies.
Please read carefully before adding new dependencies:
- Any dependency can break all of pins-infra. Please be mindful of that before
adding new dependencies. Try to stick to stable versions of widely used libraries.
Do not depend on private repositories and forks.
- Fix dependencies to a specific version or commit, so upstream changes cannot break
pins-infra. Prefer releases over arbitrary commits when both are available.
"""
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def pins_infra_deps():
"""Sets up 3rd party workspaces needed to build PINS infrastructure."""
if not native.existing_rule("com_github_bazelbuild_buildtools"):
http_archive(
name = "com_github_bazelbuild_buildtools",
sha256 = "44a6e5acc007e197d45ac3326e7f993f0160af9a58e8777ca7701e00501c0857",
strip_prefix = "buildtools-4.2.4",
url = "https://github.com/bazelbuild/buildtools/archive/4.2.4.tar.gz",
)
if "boringssl" not in native.existing_rules():
http_archive(
name = "boringssl",
sha256 = "9f441d72fccb9a3faf96470478c8ccfaaeb8db1cffd4d78b698f782124dad1b0",
strip_prefix = "boringssl-b8a2bffc598f230484ff48a247526a9820facfc2",
urls = [
"https://storage.googleapis.com/grpc-bazel-mirror/github.com/google/boringssl/archive/b8a2bffc598f230484ff48a247526a9820facfc2.tar.gz",
"https://github.com/google/boringssl/archive/b8a2bffc598f230484ff48a247526a9820facfc2.tar.gz",
],
)
if not native.existing_rule("com_github_grpc_grpc"):
http_archive(
name = "com_github_grpc_grpc",
# url = "https://github.com/grpc/grpc/archive/v1.46.0.zip",
# strip_prefix = "grpc-1.46.0",
# sha256 = "1cbd6d6dfc9b1235766fc6b1d66d4f1dbb87f877a44c2a799bc8ee6b383af0fa",
url = "https://github.com/grpc/grpc/archive/v1.58.0.zip",
strip_prefix = "grpc-1.58.0",
sha256 = "aa329c7de707a03511c88206ef4483e9346ab6336b6be4378d294060aa7400b3",
patch_args = ["-p1"],
patches = [
"//:bazel/patches/grpc-001-fix_file_watcher_race_condition.patch",
"//:bazel/patches/grpc-003-fix_go_gazelle_register_toolchain.patch",
],
)
if not native.existing_rule("com_google_absl"):
http_archive(
name = "com_google_absl",
url = "https://github.com/abseil/abseil-cpp/archive/20230802.0.tar.gz",
strip_prefix = "abseil-cpp-20230802.0",
sha256 = "59d2976af9d6ecf001a81a35749a6e551a335b949d34918cfade07737b9d93c5",
)
if not native.existing_rule("com_google_googletest"):
http_archive(
name = "com_google_googletest",
urls = ["https://github.com/google/googletest/archive/release-1.11.0.tar.gz"],
strip_prefix = "googletest-release-1.11.0",
sha256 = "b4870bf121ff7795ba20d20bcdd8627b8e088f2d1dab299a031c1034eddc93d5",
)
if not native.existing_rule("com_google_benchmark"):
http_archive(
name = "com_google_benchmark",
urls = ["https://github.com/google/benchmark/archive/v1.5.4.tar.gz"],
strip_prefix = "benchmark-1.5.4",
sha256 = "e3adf8c98bb38a198822725c0fc6c0ae4711f16fbbf6aeb311d5ad11e5a081b5",
)
if not native.existing_rule("com_google_benchmark"):
http_archive(
name = "com_google_benchmark",
urls = ["https://github.com/google/benchmark/archive/v1.5.4.tar.gz"],
strip_prefix = "benchmark-1.5.4",
sha256 = "e3adf8c98bb38a198822725c0fc6c0ae4711f16fbbf6aeb311d5ad11e5a081b5",
)
if not native.existing_rule("com_google_protobuf"):
http_archive(
name = "com_google_protobuf",
url = "https://github.com/protocolbuffers/protobuf/archive/refs/tags/v23.1.zip",
strip_prefix = "protobuf-23.1",
sha256 = "c0ea9f4d75b37ea8e9d78ce4c670d066bcb7cebdba190fa5fc8c57b1f00c0c2c",
)
if not native.existing_rule("com_googlesource_code_re2"):
http_archive(
name = "com_googlesource_code_re2",
# Newest commit on "absl" branch as of 2021-03-25.
url = "https://github.com/google/re2/archive/72f110e82ccf3a9ae1c9418bfb447c3ba1cf95c2.zip",
strip_prefix = "re2-72f110e82ccf3a9ae1c9418bfb447c3ba1cf95c2",
sha256 = "146bf2e8796317843106a90543356c1baa4b48236a572e39971b839172f6270e",
)
if not native.existing_rule("com_google_googleapis"):
http_archive(
name = "com_google_googleapis",
url = "https://github.com/googleapis/googleapis/archive/f405c718d60484124808adb7fb5963974d654bb4.zip",
strip_prefix = "googleapis-f405c718d60484124808adb7fb5963974d654bb4",
sha256 = "406b64643eede84ce3e0821a1d01f66eaf6254e79cb9c4f53be9054551935e79",
)
if not native.existing_rule("com_github_google_glog"):
http_archive(
name = "com_github_google_glog",
url = "https://github.com/google/glog/archive/v0.6.0.tar.gz",
strip_prefix = "glog-0.6.0",
sha256 = "8a83bf982f37bb70825df71a9709fa90ea9f4447fb3c099e1d720a439d88bad6",
)
if not native.existing_rule("com_github_otg_models"):
http_archive(
name = "com_github_otg_models",
url = "https://github.com/open-traffic-generator/models/archive/v0.11.8.zip",
strip_prefix = "models-0.11.8",
build_file = "@//:bazel/BUILD.otg-models.bazel",
sha256 = "caf3a9c9cdf8f9f4fb16da2cc9123823af6446f40dff71a1f2c1b35e76ae36f5",
)
# Needed to make glog happy.
if not native.existing_rule("com_github_gflags_gflags"):
http_archive(
name = "com_github_gflags_gflags",
url = "https://github.com/gflags/gflags/archive/v2.2.2.tar.gz",
strip_prefix = "gflags-2.2.2",
sha256 = "34af2f15cf7367513b352bdcd2493ab14ce43692d2dcd9dfc499492966c64dcf",
)
if not native.existing_rule("com_github_gnmi"):
http_archive(
name = "com_github_gnmi",
# v0.10.0 release; commit-hash:5473f2ef722ee45c3f26eee3f4a44a7d827e3575.
url = "https://github.com/openconfig/gnmi/archive/refs/tags/v0.10.0.zip",
strip_prefix = "gnmi-0.10.0",
patch_args = ["-p1"],
patches = [
"@com_github_google_pins_infra//:bazel/patches/gnmi-001-fix_virtual_proto_import.patch",
],
sha256 = "2231e1cc398a523fa840810fa6fdb8960639f7b91b57bb8f12ed8681e0142a67",
)
if not native.existing_rule("com_github_gnoi"):
http_archive(
name = "com_github_gnoi",
# Newest commit on main on 2021-11-08.
url = "https://github.com/openconfig/gnoi/archive/1ece8ed91a0d5d283219a99eb4dc6c7eadb8f287.zip",
strip_prefix = "gnoi-1ece8ed91a0d5d283219a99eb4dc6c7eadb8f287",
sha256 = "991ff13a0b28f2cdc2ccb123261e7554d9bcd95c00a127411939a3a8c8a9cc62",
)
if not native.existing_rule("com_github_p4lang_p4c"):
http_archive(
name = "com_github_p4lang_p4c",
# Newest commit on main on 2022-11-23.
url = "https://github.com/p4lang/p4c/archive/bc1798bb8529c9f71f2794dbc690b29f040549c4.zip",
strip_prefix = "p4c-bc1798bb8529c9f71f2794dbc690b29f040549c4",
sha256 = "21fece70b3fc2d1430ccc3e023b038ce0ca74e1682e6249fb350809d1c61215f",
)
if not native.existing_rule("com_github_p4lang_p4runtime"):
# We frequently need bleeding-edge, unreleased version of P4Runtime, so we use a commit
# rather than a release.
http_archive(
name = "com_github_p4lang_p4runtime",
# 90553b9 is the newest commit on main as of 2023-05-05.
urls = ["https://github.com/p4lang/p4runtime/archive/90553b90a12ead5c19700e7fef21164dea5b6d22.zip"],
strip_prefix = "p4runtime-90553b90a12ead5c19700e7fef21164dea5b6d22/proto",
sha256 = "21f060e8cb590174c9be0fbe22665cb9a896f5f0b9399e17794defc9bcda3adc",
)
if not native.existing_rule("com_github_p4lang_p4_constraints"):
http_archive(
name = "com_github_p4lang_p4_constraints",
urls = ["https://github.com/p4lang/p4-constraints/archive/19be9f88dd843e9012a46e8e0e764d545d649f67.zip"],
strip_prefix = "p4-constraints-19be9f88dd843e9012a46e8e0e764d545d649f67",
sha256 = "48cbe4e5831a54d78b79f33ae41fc9648f0731f055572e3568845805eea01cfa",
)
if not native.existing_rule("com_github_nlohmann_json"):
http_archive(
name = "com_github_nlohmann_json",
# JSON for Modern C++
url = "https://github.com/nlohmann/json/archive/v3.8.0.zip",
strip_prefix = "json-3.8.0",
sha256 = "83947cb78d50990b4b931b8dbc8632781bc601baa45b75ece0899c7b98d86c0b",
build_file_content = """cc_library(name = "nlohmann_json",
visibility = ["//visibility:public"],
hdrs = glob([
"include/nlohmann/*.hpp",
"include/nlohmann/**/*.hpp",
]),
includes = ["include"],
)""",
)
if not native.existing_rule("com_jsoncpp"):
http_archive(
name = "com_jsoncpp",
url = "https://github.com/open-source-parsers/jsoncpp/archive/1.9.4.zip",
strip_prefix = "jsoncpp-1.9.4",
build_file = "@//:bazel/BUILD.jsoncpp.bazel",
sha256 = "6da6cdc026fe042599d9fce7b06ff2c128e8dd6b8b751fca91eb022bce310880",
)
if not native.existing_rule("com_gnu_gmp"):
http_archive(
name = "com_gnu_gmp",
urls = [
"https://gmplib.org/download/gmp/gmp-6.2.1.tar.xz",
"https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz",
],
strip_prefix = "gmp-6.2.1",
sha256 = "fd4829912cddd12f84181c3451cc752be224643e87fac497b69edddadc49b4f2",
build_file = "@//:bazel/BUILD.gmp.bazel",
)
if not native.existing_rule("com_github_z3prover_z3"):
http_archive(
name = "com_github_z3prover_z3",
url = "https://github.com/Z3Prover/z3/archive/z3-4.8.12.tar.gz",
strip_prefix = "z3-z3-4.8.12",
sha256 = "e3aaefde68b839299cbc988178529535e66048398f7d083b40c69fe0da55f8b7",
build_file = "@//:bazel/BUILD.z3.bazel",
)
if not native.existing_rule("rules_foreign_cc"):
http_archive(
name = "rules_foreign_cc",
sha256 = "d54742ffbdc6924f222d2179f0e10e911c5c659c4ae74158e9fe827aad862ac6",
strip_prefix = "rules_foreign_cc-0.2.0",
url = "https://github.com/bazelbuild/rules_foreign_cc/archive/0.2.0.tar.gz",
)
if not native.existing_rule("rules_proto"):
http_archive(
name = "rules_proto",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_proto/archive/97d8af4dc474595af3900dd85cb3a29ad28cc313.tar.gz",
"https://github.com/bazelbuild/rules_proto/archive/97d8af4dc474595af3900dd85cb3a29ad28cc313.tar.gz",
],
strip_prefix = "rules_proto-97d8af4dc474595af3900dd85cb3a29ad28cc313",
sha256 = "602e7161d9195e50246177e7c55b2f39950a9cf7366f74ed5f22fd45750cd208",
)
if not native.existing_rule("sonic_swss_common"):
http_archive(
name = "sonic_swss_common",
url = "https://github.com/azure/sonic-swss-common/archive/e7917acd2d4a9c0121802437e3c899bd513ac888.zip",
strip_prefix = "sonic-swss-common-e7917acd2d4a9c0121802437e3c899bd513ac888",
)
if not native.existing_rule("rules_pkg"):
http_archive(
name = "rules_pkg",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.5.1/rules_pkg-0.5.1.tar.gz",
"https://github.com/bazelbuild/rules_pkg/releases/download/0.5.1/rules_pkg-0.5.1.tar.gz",
],
sha256 = "a89e203d3cf264e564fcb96b6e06dd70bc0557356eb48400ce4b5d97c2c3720d",
)
if not native.existing_rule("com_github_nlohmann_json"):
http_archive(
name = "com_github_nlohmann_json",
# JSON for Modern C++
url = "https://github.com/nlohmann/json/archive/v3.7.3.zip",
strip_prefix = "json-3.7.3",
sha256 = "e109cd4a9d1d463a62f0a81d7c6719ecd780a52fb80a22b901ed5b6fe43fb45b",
build_file_content = """cc_library(name="json",
visibility=["//visibility:public"],
hdrs=["single_include/nlohmann/json.hpp"]
)""",
)