From 970ddde93ae20de7d8ff4a4a90df9efc0566f194 Mon Sep 17 00:00:00 2001 From: Ronnie Lajaunie Date: Sun, 1 Dec 2024 17:19:49 -0600 Subject: [PATCH] Update setup_manylinux.sh --- .github/workflows/setup_manylinux.sh | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/.github/workflows/setup_manylinux.sh b/.github/workflows/setup_manylinux.sh index 514c7739..6d63c4c9 100644 --- a/.github/workflows/setup_manylinux.sh +++ b/.github/workflows/setup_manylinux.sh @@ -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 +