Skip to content

Commit

Permalink
Update setup_manylinux.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaj authored Dec 1, 2024
1 parent e4ef53d commit 970ddde
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/setup_manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,39 @@ echo "========================================"
pip install setuptools
pip install auditwheel
auditwheel --version

echo "========================================"
echo "===Build Origen Metal Python Package===="
echo "========================================"
cd ${GIT_DIR}/python/origen_metal
poetry build --format wheel

echo "========================================"
echo "===== Display OM Dist Directory ====="
echo "========================================"
cd ${GIT_DIR}/python/origen_metal
ls dist

echo "========================================"
echo "===== Repair OM Wheel ====="
echo "========================================"
cd ${GIT_DIR}/python/origen_metal
auditwheel show dist/*
auditwheel repair dist/*

echo "========================================"
echo "====Display OM Wheelhouse Directory====="
echo "========================================"
cd ${GIT_DIR}/python/origen_metal
ls wheelhouse
OM_WHEEL=$( ls wheelhouse | head -1 )

echo "========================================"
echo "===== Display OM Wheel Name ====="
echo "========================================"
echo $OM_WHEEL


echo $OM_VER_FILE
echo $ORIGEN_VER_FILE

0 comments on commit 970ddde

Please sign in to comment.