Unverified Commit c7f2cf2b authored by Simon Mo's avatar Simon Mo Committed by GitHub
Browse files

[CI] Reduce wheel size by not shipping debug symbols (#4602)

parent 8d8357c8
...@@ -25,6 +25,9 @@ def check_wheel_size(directory): ...@@ -25,6 +25,9 @@ def check_wheel_size(directory):
f"compare to the allowed size ({MAX_SIZE_MB} MB).") f"compare to the allowed size ({MAX_SIZE_MB} MB).")
print_top_10_largest_files(wheel_path) print_top_10_largest_files(wheel_path)
return 1 return 1
else:
print(f"Wheel {wheel_path} is within the allowed size "
f"({wheel_size_mb} MB).")
return 0 return 0
......
...@@ -79,6 +79,8 @@ jobs: ...@@ -79,6 +79,8 @@ jobs:
- name: Build wheel - name: Build wheel
shell: bash shell: bash
env:
CMAKE_BUILD_TYPE: Release # do not compile with debug symbol to reduce wheel size
run: | run: |
bash -x .github/workflows/scripts/build.sh ${{ matrix.python-version }} ${{ matrix.cuda-version }} bash -x .github/workflows/scripts/build.sh ${{ matrix.python-version }} ${{ matrix.cuda-version }}
wheel_name=$(ls dist/*whl | xargs -n 1 basename) wheel_name=$(ls dist/*whl | xargs -n 1 basename)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment