Skip to content

Commit a007803

Browse files
committed
build/github: fix processing of BES files
After the switch to Okta for mesolite access, processing of the bes files began failing. Epic: none Release note: None
1 parent 27a33b3 commit a007803

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

build/github/summarize-build.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ then
1616
exit 0
1717
fi
1818

19+
file $1
20+
du -sh $1
21+
ls -althr $1
22+
1923
THIS_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
2024

2125
if [ ! -f _bazel/bin/pkg/cmd/bazci/bazel-github-helper/bazel-github-helper_/bazel-github-helper ]

pkg/build/engflow/engflow.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ func getHttpClient(certFile, keyFile string) (*http.Client, error) {
114114
func downloadFile(client *http.Client, uri string) (string, error) {
115115
url := strings.ReplaceAll(uri, "bytestream://", "https://")
116116
url = strings.ReplaceAll(url, "/blobs/", "/api/v0/blob/")
117+
fmt.Fprintln(os.Stderr, "downloading file:", url)
117118
resp, err := client.Get(url)
118119
if err != nil {
119120
return "", err

0 commit comments

Comments
 (0)