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

Fix Path Discrepancy in Release Binary Extraction #319

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
2 changes: 1 addition & 1 deletion ci/do_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ bash -x "$UPSTREAM_ENVOY_SRCDIR/ci/do_ci.sh" "$@"
echo Extracting release binaries
ENVOY_GLOO_BIN_DIR='linux/amd64/build_envoy_release'
mkdir -p "$ENVOY_GLOO_BIN_DIR"
bazel run @envoy//tools/zstd:zstd -- --stdout -d /build/envoy/x64/bin/release.tar.zst \
bazel run @envoy//tools/zstd:zstd -- --stdout -d /build/envoy/arm64/bin/release.tar.zst \
| tar xfO - envoy > "$ENVOY_GLOO_BIN_DIR/envoy"

chmod +x "${ENVOY_GLOO_BIN_DIR}/envoy"
Expand Down