-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated fetch_shas utility to use the channel manifest tomls
- Loading branch information
1 parent
3d1856b
commit 2ef4ab1
Showing
11 changed files
with
4,127 additions
and
1,611 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
load("@rules_python//python:defs.bzl", "py_binary") | ||
|
||
py_binary( | ||
name = "fetch_shas", | ||
srcs = ["fetch_shas.py"], | ||
data = [ | ||
"fetch_shas_HOST_TOOLS.txt", | ||
"fetch_shas_NIGHTLY_ISO_DATES.txt", | ||
"fetch_shas_TARGETS.txt", | ||
"fetch_shas_TOOLS.txt", | ||
"fetch_shas_VERSIONS.txt", | ||
], | ||
tags = ["manual"], | ||
) |
Oops, something went wrong.