[PATCH] D107010: [Bazel] Fix digest for bazel-skylib 1.0.3

Geoffrey Martin-Noble via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 28 15:36:21 PDT 2021


GMNGeoffrey created this revision.
GMNGeoffrey requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

I apparently left in the old digest when updating the version, so for my
local build Bazel just happily used the cached version, but anyone
attempting a fresth build would get a mismatch.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D107010

Files:
  utils/bazel/WORKSPACE


Index: utils/bazel/WORKSPACE
===================================================================
--- utils/bazel/WORKSPACE
+++ utils/bazel/WORKSPACE
@@ -9,7 +9,7 @@
 
 http_archive(
     name = "bazel_skylib",
-    sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44",
+    sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c",
     urls = [
         "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/{version}/bazel-skylib-{version}.tar.gz".format(version=SKYLIB_VERSION),
         "https://github.com/bazelbuild/bazel-skylib/releases/download/{version}/bazel-skylib-{version}.tar.gz".format(version=SKYLIB_VERSION),


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107010.362566.patch
Type: text/x-patch
Size: 695 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210728/66179f70/attachment.bin>


More information about the llvm-commits mailing list