Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ load("//bazel:toolchains_repo.bzl", "PLATFORMS", "toolchains_repo")
# bazel build @structure_test_st_darwin_amd64//... @structure_test_st_darwin_arm64//... @structure_test_st_linux_arm64//... \
# @structure_test_st_linux_s390x//... @structure_test_st_linux_amd64//... @structure_test_st_windows_amd64//...

_VERSION="v1.20.0"
_VERSION="v1.21.0"
_HASHES = {
"darwin-amd64": "sha256-PytWRfwcvyPzPS1Sc744hEolTUij7dOyFlcfZ/qXbhU=",
"darwin-arm64": "sha256-WEBmkvHWcZBVqAS4g3wuckdtP+VeSTli8XBapxqL8Ik=",
"linux-amd64": "sha256-Y30vxXXik+AQW/V7BPaerg6iaNvY3HY38kiWEo/mh4I=",
"linux-arm64": "sha256-6Atelq/nsqW4OYlXIMqPBR7pFVC4xt8cWtOnNNHUx/8=",
"linux-ppc64le": "sha256-+6lOsk2RHU4JlQ343JkTH47UTlo6bZWlGs67XEpQqXs=",
"linux-s390x": "sha256-d+qgAK3yzPqAnWctQxR2Cn5537ycArSBvaGeeMbLHvs=",
"windows-amd64.exe": "sha256-JkBn5XBTk1Up3Q/6P+8T36TRv+tnX1mKDAhiO4Ku3sA=",
"darwin-amd64": "sha256-zPbJHhDncYDjcO8ELp4qtit17p+tLt/RyqFdWM+Gm1E=",
"darwin-arm64": "sha256-DKRhlVYHVbStmyV7FKGUlKjNZdyMi6zvp4VeoU/NGxs=",
"linux-amd64": "sha256-Nv38PfHOtCNJmS5i6ALG7CV+SMXA3iIXOP2IGzR76c4=",
"linux-arm64": "sha256-qBNRkt/Yw7m1Voog6DpCLSXD34fd4ZHStRZvPOKh608=",
"linux-ppc64le": "sha256-b7l32xae4qMFQ545TGsevwnntlHVtqIaPrF2HrgoRMQ=",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The hash for linux-ppc64le is updated, but this platform isn't defined in PLATFORMS in bazel/toolchains_repo.bzl and appears to be unused. To improve maintainability, consider removing this entry. If support for linux-ppc64le is intended, it should be added to the PLATFORMS dictionary.

"linux-s390x": "sha256-zEBSbQ4qeBTx/uyxbVdWPMbkZIy6ckeMXJZezdtOgpE=",
"windows-amd64.exe": "sha256-rdzGs22MRkQnqBeS+qUt/zlVq6h+kqLkT2aaugMIkdE=",
}

STRUCTURE_TEST_BUILD_TMPL = """\
Expand Down
Loading