Skip to content

Commit

Permalink
Another name fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescarni committed Feb 26, 2023
1 parent cdc6a95 commit 24ca5fa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/gha_manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,18 +89,18 @@ cp -r `/opt/python/${PYTHON_DIR}/bin/python -c 'import site; print(site.getsitep
# not picked up properly by the linker.
export LD_LIBRARY_PATH="/usr/local/lib64:/usr/local/lib"
/opt/python/${PYTHON_DIR}/bin/python setup.py bdist_wheel
auditwheel repair dist/cascade* -w ./dist2
auditwheel repair dist/esa_cascade* -w ./dist2
# Try to install it and run the tests.
unset LD_LIBRARY_PATH
cd /
/opt/python/${PYTHON_DIR}/bin/pip install ${GITHUB_WORKSPACE}/build/wheel/dist2/cascade*
/opt/python/${PYTHON_DIR}/bin/pip install ${GITHUB_WORKSPACE}/build/wheel/dist2/esa_cascade*
/opt/python/${PYTHON_DIR}/bin/python -c "import cascade; cascade.test.run_test_suite();"

# Upload to PyPI.
if [[ "${CASCADE_PY_RELEASE_BUILD}" == "yes" ]]; then
/opt/python/${PYTHON_DIR}/bin/pip install twine
/opt/python/${PYTHON_DIR}/bin/twine upload -u ci4esa ${GITHUB_WORKSPACE}/build/wheel/dist2/cascade*
fi
/opt/python/${PYTHON_DIR}/bin/pip install twine
/opt/python/${PYTHON_DIR}/bin/twine upload -u ci4esa ${GITHUB_WORKSPACE}/build/wheel/dist2/esa_cascade*
fi

set +e
set +x

0 comments on commit 24ca5fa

Please sign in to comment.