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 2, 2024
1 parent 1b176f2 commit 9854817
Showing 1 changed file with 45 additions and 2 deletions.
47 changes: 45 additions & 2 deletions .github/workflows/setup_manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,50 @@ echo "===== Display OM Wheel Name ====="
echo "========================================"
echo $OM_WHEEL

echo "========================================"
echo "===== Get OM Python Package Version====="
echo "========================================"
cd ${GIT_DIR}/python/origen_metal
poetry version -s > $OM_VER_FILE

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

echo "========================================"
echo "===== Display Origen Dist Directory====="
echo "========================================"
cd ${GIT_DIR}/python/origen
ls dist

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

echo "========================================"
echo "==Display Origen Wheelhouse Directory==="
echo "========================================"
cd ${GIT_DIR}/python/origen
ls wheelhouse
ORIGEN_WHEEL=$( ls wheelhouse | head -1 )

echo "========================================"
echo "==Display Origen Wheelhouse Directory==="
echo "========================================"
cd ${GIT_DIR}
ls -al python/origen/origen/__bin__/bin
ls -al rust/pyapi/target/release
echo $ORIGEN_WHEEL

echo "========================================"
echo "===Get Origen Python Package Version===="
echo "========================================"
cd ${GIT_DIR}/python/origen
poetry version -s > $ORIGEN_VER_FILE

echo $OM_VER_FILE
echo $ORIGEN_VER_FILE

0 comments on commit 9854817

Please sign in to comment.