Lines Matching full:bazel
16 # Script to upload github archives for bazel dependencies to GCS, creating a reliable mirror link.
17 # Archives are copied to "grpc-bazel-mirror" GCS bucket (https://console.cloud.google.com/storage/b…
18 # and will by downloadable with the https://storage.googleapis.com/grpc-bazel-mirror/ prefix.
20 # This script should be run each time bazel dependencies are updated.
40 echo "Uploading https://${file} to https://storage.googleapis.com/grpc-bazel-mirror/${file}"
41 gsutil cp -n "${tmpdir}/archive" "gs://grpc-bazel-mirror/${file}" # "-n" will skip existing files
47 # 1. clean $HOME/.cache/bazel
48 # 2. bazel clean --expunge
49 # 3. bazel sync (failed downloads will print warnings)
54 # bazel binaries used by the tools/bazel wrapper script
55 upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-linux-x86_64
56 upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-darwin-x86_64
57 upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-windows-x86_64.exe
60 grep -o '"https://github.com/[^"]*"' bazel/grpc_deps.bzl | sed 's/^"https:\/\///' | sed 's/"$//' | …