Skip to content

Commit fc5ddb3

Browse files
committed
test
1 parent 02e211c commit fc5ddb3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,19 @@ jobs:
126126
cd ../../..
127127
cp third_party/tvm/python/dist/*.whl dist/
128128
129+
- name: Create manylinux wheels (tt-forge-fe and tvm)
130+
shell: bash
131+
run: |
132+
# Exclude libtorch*.so & libc10.so since they are sourced from torch in the python requirements.txt
133+
pip install auditwheel
134+
auditwheel repair --disable-isa-ext-check --plat manylinux_2_35_x86_64 --exclude libtorch*.so --exclude libc10.so dist/*.whl
135+
129136
- name: Upload Build
130137
uses: actions/upload-artifact@v4
131138
if: success() || failure()
132139
with:
133140
name: forge-wheel
134-
path: dist/*.whl
141+
path: wheelhouse/*.whl
135142

136143

137144
unit-test-build:

0 commit comments

Comments
 (0)