-
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": "31d39ec52ee9f27a680cbfceff276faade56f912",
"sha256": "d648ed736ea0e36a35eaf87d1f8715cea261eb8b1cc42dc836401892c0297b52",
"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.3",
"sha256": "4727b896c51fccaeda1210ef8b2da567b1964e3f4f888f6e0d2bdabd63cd61bc",
"urls": ["https://github.com/{repo}/archive/bazel-v{version}.tar.gz"],
"patch_args": ["-p1"],
"strip_prefix": "toolshed-bazel-v{version}/bazel",
},
}