aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Eric Gribkoff <ericgribkoff@google.com>2018-12-05 18:02:48 -0800
committerGravatar GitHub <noreply@github.com>2018-12-05 18:02:48 -0800
commitd5d6e211eae72c150ff79fce3ab10cb8fce2b174 (patch)
tree2ca3aa4df8fbed5c7bf1613524afd38730b40b13
parent738dd382ed098860545a03bd18afa650c22ffb39 (diff)
parent5710a3a25d57f63c8cf4e50d258d0aaa1cc54aee (diff)
Merge pull request #17415 from ericgribkoff/cython_strip_backport
Revert "Strip manylinux1 binary wheels"
-rwxr-xr-xtools/run_tests/artifacts/build_package_python.sh14
1 files changed, 2 insertions, 12 deletions
diff --git a/tools/run_tests/artifacts/build_package_python.sh b/tools/run_tests/artifacts/build_package_python.sh
index d93e8979fc..29801a5b86 100755
--- a/tools/run_tests/artifacts/build_package_python.sh
+++ b/tools/run_tests/artifacts/build_package_python.sh
@@ -19,20 +19,10 @@ cd "$(dirname "$0")/../../.."
mkdir -p artifacts/
+# All the python packages have been built in the artifact phase already
+# and we only collect them here to deliver them to the distribtest phase.
cp -r "${EXTERNAL_GIT_ROOT}"/input_artifacts/python_*/* artifacts/ || true
-strip_binary_wheel() {
- TEMP_WHEEL_DIR=$(mktemp -d)
- unzip "$1" -d "$TEMP_WHEEL_DIR"
- find "$TEMP_WHEEL_DIR" -name "_protoc_compiler*.so" -exec strip --strip-debug {} ";"
- find "$TEMP_WHEEL_DIR" -name "cygrpc*.so" -exec strip --strip-debug {} ";"
- (cd "$TEMP_WHEEL_DIR" && zip -r - .) > "$1"
-}
-
-for wheel in artifacts/*.whl; do
- strip_binary_wheel "$wheel"
-done
-
# TODO: all the artifact builder configurations generate a grpcio-VERSION.tar.gz
# source distribution package, and only one of them will end up
# in the artifacts/ directory. They should be all equivalent though.