Commit abce18b4 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #45250 from ixdy/bazel-push-build-alias

Automatic merge from submit-queue (batch tested with PRs 45314, 45250, 41733) Rename //:ci-artifacts rule to //:push-build, and add a deprecated alias **What this PR does / why we need it**: this rule has a larger scope than just CI artifacts now, so it seems like the name should be updated to match. WDYT? This is a separate PR to facilitate easy cherry-picking; I'd rather test-infra jobs not need to special-case. /assign @spxtr @mikedanese **Release note**: ```release-note NONE ```
parents d39af984 4c51d1e2
...@@ -20,7 +20,7 @@ filegroup( ...@@ -20,7 +20,7 @@ filegroup(
) )
gcs_upload( gcs_upload(
name = "ci-artifacts", name = "push-build",
data = [ data = [
":_binary-artifacts-and-hashes", ":_binary-artifacts-and-hashes",
"//build/release-tars:release-tars-and-hashes", "//build/release-tars:release-tars-and-hashes",
...@@ -33,6 +33,13 @@ gcs_upload( ...@@ -33,6 +33,13 @@ gcs_upload(
}, },
) )
# TODO: remove this alias after 2017-05-22
alias(
name = "ci-artifacts",
actual = "push-build",
deprecation = "This rule will be removed after 2017-05-22. Use //:push-build instead.",
)
filegroup( filegroup(
name = "package-srcs", name = "package-srcs",
srcs = glob( srcs = glob(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment