Skip to content

Commit 5106161

Browse files
authored
Deactivate version symbol check (#380)
1 parent 2755c89 commit 5106161

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

packaging/post_build_script.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,12 @@ assert_not_in_wheel $wheel_path "^benchmarks"
3838
assert_not_in_wheel $wheel_path "^packaging"
3939

4040
if [[ "$unamestr" == 'Linux' ]]; then
41-
# See invoked python script below for details about this check.
42-
extracted_wheel_dir=$(mktemp -d)
43-
unzip -q $wheel_path -d $extracted_wheel_dir
44-
symbols_matches=$(find $extracted_wheel_dir | grep ".so$" | xargs objdump --syms | grep GLIBCXX_3.4.)
45-
python packaging/check_glibcxx.py "$symbols_matches"
41+
# TODO: Put this back with higher upper bound of version symbol.
42+
# # See invoked python script below for details about this check.
43+
# extracted_wheel_dir=$(mktemp -d)
44+
# unzip -q $wheel_path -d $extracted_wheel_dir
45+
# symbols_matches=$(find $extracted_wheel_dir | grep ".so$" | xargs objdump --syms | grep GLIBCXX_3.4.)
46+
# python packaging/check_glibcxx.py "$symbols_matches"
4647

4748
echo "ls dist"
4849
ls dist

0 commit comments

Comments
 (0)