-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stop using deprecated alias for push-build #2867
Conversation
@@ -34,7 +34,7 @@ if [[ "${rc}" == 0 ]]; then | |||
echo "Kubernetes version missing; not uploading ci artifacts." | |||
rc=1 | |||
else | |||
bazel run //:ci-artifacts -- "gs://kubernetes-release-dev/bazel/${version}" && rc=$? || rc=$? | |||
bazel run //:push-build -- "gs://kubernetes-release-dev/bazel/${version}" && rc=$? || rc=$? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we cherry-picked this to 1.6 (yet). I meant to, though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll not change 1-6.sh for now. I don't think it's a big deal if we don't cherrypick.
@@ -39,7 +39,7 @@ if [[ "${rc}" == 0 ]]; then | |||
rc=1 | |||
else | |||
version="${PULL_NUMBER:-batch}/${PULL_REFS:-}" | |||
bazel run //:ci-artifacts -- "gs://kubernetes-release-dev/bazel/${version}" && rc=$? || rc=$? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we might need to special-case for the release-1.6 branch though?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup
it should be safe to merge this now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will you please migrate these to a scenario instead? We should not have any jobs/*.sh
files
I'm going to yank this logic out of bootstrap in the very near future.
Also IMO it makes more sense to use |
@fejta that is out of scope for this PR. this PR is simply switching to the non-deprecated target (see https://github.com/kubernetes/kubernetes/blob/d3b740bf28743b3fb781e2f75ebdc5b201c60877/build/root/BUILD.root#L22-L34) and has no other functional changes. #2732 is a more reasonable place to direct this feedback. |
No description provided.