Skip to content
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

Add linux ppc64le binaries for puller and loader #1923

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion container/go/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,38 @@ steps:
id: "push-loader-linux-s390x"
waitFor: ["build-linux-s390x"]

# Step: build the puller and pusher release binary for Linux ppc64le
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In addition to the comment that Alex left, CloudBuild is currently disabled for this repo.

- name: "l.gcr.io/google/bazel"
args:
- "build"
- "--platforms=@io_bazel_rules_go//go/toolchain:linux_ppc64le"
- "//container/go/cmd/puller:puller"
- "//container/go/cmd/loader:loader"
id: "build-linux-ppc64le"
waitFor: ["push-puller-linux-s390x", "push-loader-linux-s390x"]

# Step: push the puller release binary for Linux ppc64le
- name: "gcr.io/cloud-builders/gsutil"
args:
- "cp"
- "-a"
- "public-read"
- "bazel-bin/container/go/cmd/puller/puller_/puller"
- "gs://rules_docker/$COMMIT_SHA/puller-linux-ppc64le"
id: "push-puller-linux-ppc64le"
waitFor: ["build-linux-ppc64le"]

# Step: push the loader release binary for Linux ppc64le
- name: "gcr.io/cloud-builders/gsutil"
args:
- "cp"
- "-a"
- "public-read"
- "bazel-bin/container/go/cmd/loader/loader_/loader"
- "gs://rules_docker/$COMMIT_SHA/loader-linux-ppc64le"
id: "push-loader-linux-ppc64le"
waitFor: ["build-linux-ppc64le"]

# Step: build the puller and loader release binaries for Darwin AMD64
- name: "l.gcr.io/google/bazel"
args:
Expand All @@ -134,7 +166,7 @@ steps:
- "//container/go/cmd/puller:puller"
- "//container/go/cmd/loader:loader"
id: "build-darwin-amd64"
waitFor: ["push-puller-linux-s390x", "push-loader-linux-s390x"]
waitFor: ["push-puller-linux-ppc64le", "push-loader-linux-ppc64le"]

# Step: push the puller release binary for Darwin AMD64
- name: "gcr.io/cloud-builders/gsutil"
Expand Down