Skip to content

Commit

Permalink
Merge pull request #7 from seh/update-available-cue-toolchains
Browse files Browse the repository at this point in the history
Update set of available CUE toolchain versions
  • Loading branch information
seh authored Jul 19, 2023
2 parents 87c0cfe + 81aa336 commit c8b2ee2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.1.0
6.2.1
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ module(
version = "0.0.0",
)

bazel_dep(name = "bazel_skylib", version = "1.4.1")
bazel_dep(name = "bazel_skylib", version = "1.4.2")
bazel_dep(name = "platforms", version = "0.0.6")
bazel_dep(name = "rules_go", version = "0.39.0")
bazel_dep(name = "rules_go", version = "0.40.1")

cue = use_extension("//cue:extensions.bzl", "cue")
use_repo(
Expand All @@ -15,4 +15,4 @@ use_repo(

register_toolchains("@cue_tool_toolchains//:all")

bazel_dep(name = "gazelle", version = "0.30.0")
bazel_dep(name = "gazelle", version = "0.31.1")
8 changes: 8 additions & 0 deletions cue/private/tools/cue/toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
visibility("public")

_TOOLS_BY_RELEASE = {
"v0.6.0-alpha.2": {
struct(os = "darwin", arch = "amd64"): "88e5045aa3ee452cf8dea387bc5b43a0353cdde35b76d1ddf61ef4a90b634af7",
struct(os = "darwin", arch = "arm64"): "66abd69dc31224996e10a5c216bec44ffa346e72973a0b19307ce8665a022b2b",
struct(os = "linux", arch = "amd64"): "ecae7e33622a13b0925186711caa4f8aae23d445d02cde37b894775b5ed91035",
struct(os = "linux", arch = "arm64"): "c438a43c420cb31c076ff8fa539a4184825c133dba9fe92e2d9a2c896edce31e",
struct(os = "windows", arch = "amd64"): "6f31984f89c9508bc28b00b103c007cd6ee3eeb34ee775d8b81df2e7c397cd5b",
struct(os = "windows", arch = "arm64"): "12e07f14d7cc1b70e2cf0ac72f9876d45eb9cd2b03242a17c459bca23d4753d6",
},
"v0.6.0-alpha.1": {
struct(os = "darwin", arch = "amd64"): "39846589363fd642d082561906894934d06fc6bde2fed9eef8f7ed9aec463a9f",
struct(os = "darwin", arch = "arm64"): "bdc5a9b9feb3e310bd1261eb472a3b77df76a060dd65712409d716835afa3e1b",
Expand Down

0 comments on commit c8b2ee2

Please sign in to comment.