Skip to content

Commit d90d52d

Browse files
committed
EXTRA_VERSIONS: Add go1.15beta1
Signed-off-by: Stephen Augustus <[email protected]>
1 parent ac70251 commit d90d52d

File tree

1 file changed

+50
-1
lines changed

1 file changed

+50
-1
lines changed

repos.bzl

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,56 @@ load(
2525
"go_rules_dependencies",
2626
)
2727

28-
EXTRA_VERSIONS = {}
28+
# TODO(justaugustus): This is potentially going to get large and unwieldy.
29+
# Consider moving to another file.
30+
EXTRA_VERSIONS = {
31+
"1.15.0-beta.1": {
32+
"darwin_amd64": (
33+
"go1.15beta1.darwin-amd64.tar.gz",
34+
"4ee49feb46169ef942097513b5e783ff0f3f276b1eacfc51083e6e453117bd7e",
35+
),
36+
"freebsd_386": (
37+
"go1.15beta1.freebsd-386.tar.gz",
38+
"77bc3aae4abaa73b537435b6a497043929cf95d7dd17c289f6e1b55180285c94",
39+
),
40+
"freebsd_amd64": (
41+
"go1.15beta1.freebsd-amd64.tar.gz",
42+
"e13dd8a3e5a04bc1a54b2b70f540fd5e4d77663948c14636e27cf8a8ecfccd7b",
43+
),
44+
"linux_386": (
45+
"go1.15beta1.linux-386.tar.gz",
46+
"83d732a3961006e058f44c9672fde93dbea3d1c3d69e8807d135eeaf21fb80c8",
47+
),
48+
"linux_amd64": (
49+
"go1.15beta1.linux-amd64.tar.gz",
50+
"11814b7475680a09720f3de32c66bca135289c8d528b2e1132b0ce56b3d9d6d7",
51+
),
52+
"linux_arm64": (
53+
"go1.15beta1.linux-arm64.tar.gz",
54+
"2648b7d08fe74d0486ec82b3b539d15f3dd63bb34d79e7e57bebc3e5d06b5a38",
55+
),
56+
"linux_arm": (
57+
"go1.15beta1.linux-armv6l.tar.gz",
58+
"d4da5c06097be8d14aeeb45bf8440a05c82e93e6de26063a147a31ed1d901ebc",
59+
),
60+
"linux_ppc64le": (
61+
"go1.15beta1.linux-ppc64le.tar.gz",
62+
"33f7bed5ee9d4a0343dc90a5aa4ec7a1db755d0749b624618c15178fd8df4420",
63+
),
64+
"linux_s390x": (
65+
"go1.15beta1.linux-s390x.tar.gz",
66+
"493b4449e68d0deba559e3f23f611310467e4c70d30b3605ff06852f14477457",
67+
),
68+
"windows_386": (
69+
"go1.15beta1.windows-386.zip",
70+
"6ef5301bf03a298a023449835a941d53bf0830021d86aa52a5f892def6356b19",
71+
),
72+
"windows_amd64": (
73+
"go1.15beta1.windows-amd64.zip",
74+
"072c7d6a059f76503a2533a20755dddbda58b5053c160cb900271bb039537f88",
75+
),
76+
},
77+
}
2978

3079
def configure(minimum_bazel_version = None, rbe_name = "rbe_default", go_version = None, nogo = None, extra_version = None):
3180
if minimum_bazel_version: # Allow an additional downstream constraint

0 commit comments

Comments
 (0)