forked from envoyproxy/envoy-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.bzl
More file actions
32 lines (32 loc) · 1.37 KB
/
versions.bzl
File metadata and controls
32 lines (32 loc) · 1.37 KB
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
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": "9fc968d757339d7c476ac890a3eea873caac5ee9",
"sha256": "cb5315b8379efeb688aae6b12f7131f350b65e12760617c3f3e420bcb35fabd4",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"strip_prefix": "envoy-{version}",
},
"envoy_archive": {
"type": "github_archive",
"repo": "envoyproxy/archive",
"version": "20e82dab132b568abc2f864d688b8693b68e0837",
"sha256": "51231a1633a9c6c879afede23eccefea4f1dd9dc10b56e4a19b9ea174b708eaa",
"urls": ["https://github.com/{repo}/archive/{version}.tar.gz"],
"patch_args": ["-p1"],
"strip_prefix": "archive-{version}",
},
}