mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
4ad02b7795
* refactor(release): switch release integrity to be dynamic This matches rules_py as documented by https://blog.aspect.build/releasing-bazel-rulesets-rust It has the benefit that developers no longer get yelled at to vendor some updated integrity hashes into bazel-lib every time they touch the Go sources. * refactor: echo should produce trailing newline * chore: bump action-gh-release to avoid Node 16 warning * chore: update test that is sensitive to compilation mode We now only use --compilation_mode=opt when cutting a release
11 lines
335 B
Python
11 lines
335 B
Python
"""Release binary integrity hashes.
|
|
|
|
This file contents are entirely replaced during release publishing.
|
|
The checked in content is only here to allow load() statements in the sources to resolve.
|
|
"""
|
|
|
|
RELEASED_BINARY_INTEGRITY = {
|
|
"copy_directory-darwin_amd64": "sha256-EH6Qpf/IzIaGncigN+cMc2xCb0C3XuV8I4cUBtaZ7GE=",
|
|
# ...etc
|
|
}
|