From bb76da06d61ad3b7daa61dc9b3ff2d3ebdf9fb21 Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Tue, 17 Sep 2019 14:20:13 -0700 Subject: [PATCH] Make the artifact check accepts both manylinux1 and manylinux2010 --- tools/run_tests/artifacts/build_artifact_python.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/run_tests/artifacts/build_artifact_python.sh b/tools/run_tests/artifacts/build_artifact_python.sh index 7393b88a768..a708f2e103d 100755 --- a/tools/run_tests/artifacts/build_artifact_python.sh +++ b/tools/run_tests/artifacts/build_artifact_python.sh @@ -79,12 +79,12 @@ ${SETARCH_CMD} "${PYTHON}" tools/distrib/python/grpcio_tools/setup.py bdist_whee if [ "$GRPC_BUILD_MANYLINUX_WHEEL" != "" ] then for wheel in dist/*.whl; do - "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep \"manylinux1 + "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep \"manylinux "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR" rm "$wheel" done for wheel in tools/distrib/python/grpcio_tools/dist/*.whl; do - "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep \"manylinux1 + "${AUDITWHEEL}" show "$wheel" | tee /dev/stderr | grep \"manylinux "${AUDITWHEEL}" repair "$wheel" -w "$ARTIFACT_DIR" rm "$wheel" done