From 24ca5fad07eb200a3a4c2f16e09bfcb833e07ec4 Mon Sep 17 00:00:00 2001 From: Francesco Biscani Date: Sun, 26 Feb 2023 14:43:04 +0100 Subject: [PATCH] Another name fix. --- tools/gha_manylinux.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/gha_manylinux.sh b/tools/gha_manylinux.sh index 34d7a8b..552b9cf 100644 --- a/tools/gha_manylinux.sh +++ b/tools/gha_manylinux.sh @@ -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