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

Enable support for s390x architecture #68

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions cmd/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ alias(
"@io_bazel_rules_go//go/platform:linux_arm64": "@bazeldnf-linux-arm64//file:downloaded",
"@io_bazel_rules_go//go/platform:linux_ppc64": "@bazeldnf-linux-ppc64//file:downloaded",
"@io_bazel_rules_go//go/platform:linux_ppc64le": "@bazeldnf-linux-ppc64le//file:downloaded",
"@io_bazel_rules_go//go/platform:linux_s390x": "@bazeldnf-linux-s390x//file:downloaded",
"@io_bazel_rules_go//go/platform:darwin_amd64": "@bazeldnf-darwin-amd64//file:downloaded",
"@io_bazel_rules_go//go/platform:darwin_arm64": "@bazeldnf-darwin-arm64//file:downloaded",
"//conditions:default": "cmd",
Expand Down
2 changes: 2 additions & 0 deletions hack/prepare-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ build_arch darwin amd64
build_arch darwin arm64
build_arch linux ppc64
build_arch linux ppc64le
build_arch linux s390x

cat <<EOT >./deps.bzl
load(
Expand Down Expand Up @@ -79,6 +80,7 @@ write_arch darwin amd64
write_arch darwin arm64
write_arch linux ppc64
write_arch linux ppc64le
write_arch linux s390x

git commit -a -m "Bump prebuilt binary references for ${VERSION}"

Expand Down
Loading