Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Speed up wheel commit validation check by 100x (#33434)
Speed up wheel commit validation check by 100x. Also hopefully will alleviate if not eliminate the 'Observed wheel commit () is not expected' issue (#32156) that has been creeping through many of ci/cd builds in our pipeline. The existing code uses pipe to read from a rather large file (>50MB). Pipe however has buffer limit which by default in term of kb (https://man7.org/linux/man-pages/man7/pipe.7.html) so what we look for might not exist. We can fix this by tell unzip the exact file we are looking for. That file is pretty small so we should not hit buffer limit. Signed-off-by: Cuong Nguyen <[email protected]>
- Loading branch information