-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathversions.bzl
41 lines (41 loc) · 1.75 KB
/
versions.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
VERSIONS = {
# This should match the version in `.ruby-version`
# It must also be availble, and preferably the default here:
# https://github.com/netlify/build-image/blob/focal/included_software.md
"python": "3.10",
"com_github_twbs_bootstrap": {
"type": "github_archive",
"repo": "twbs/bootstrap",
"version": "5.1.3",
"sha256": "55b951db46e1d69b4236494122fe559716a76c4b8a418c11f3fed6abc2d4de3f",
"urls": ["https://github.com/{repo}/archive/refs/tags/v{version}.tar.gz"],
"strip_prefix": "bootstrap-{version}",
"build_file": "@envoy-website//bazel:bootstrap.BUILD",
},
"envoy": {
"type": "github_archive",
"repo": "envoyproxy/envoy",
"version": "8ed2dc503b8f665345f013645e690a714a8f8036",
"sha256": "29ca4518cb8d6bbc1ed3d138fb21c90be37c531740c5dbb9c15fe68b72af3ee7",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"strip_prefix": "envoy-{version}",
},
"envoy_archive": {
"type": "github_archive",
"repo": "envoyproxy/archive",
"version": "7a3f23d962ce8d6405b860223463bff3b71d85ce",
"sha256": "725524bb8222f8548b81e322ef4bed59f1046751b0033923037f8f2655773d99",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"patch_args": ["-p1"],
"strip_prefix": "archive-{version}",
},
"envoy_toolshed": {
"type": "github_archive",
"repo": "envoyproxy/toolshed",
"version": "0.2.2",
"sha256": "443fe177aba0cef8c17b7a48905c925c67b09005b10dd70ff12cd9f729a72d51",
"urls": ["https://github.com/{repo}/archive/bazel-v{version}.tar.gz"],
"patch_args": ["-p1"],
"strip_prefix": "toolshed-bazel-v{version}/bazel",
},
}