Skip to content

Commit

Permalink
Debugging again
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-el committed Mar 1, 2024
1 parent 7b08e70 commit 181d074
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions dakota_manylinux_install_files/build_wheels_gha.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ if [ -z "$1" ]; then
exit 1
fi

python --version

CAROLINA_REPO=$(pwd)/carolina

DIST_BUILD=/github/workspace/dist_build
INSTALL_DIR=$DIST_BUILD

cd /tmp

python_exec=$(which python$1)
$python_exec -m venv myvenv
source ./myvenv/bin/activate
Expand All @@ -17,6 +23,11 @@ ls -lah $DIST_BUILD

echo "----------------------------------------------------------------"

python --version

echo "----------------------------------------------------------------"

cd $CAROLINA_REPO
pip install .

echo "Pip list ...... "
Expand All @@ -25,9 +36,9 @@ pip list | grep carolina
pip install pytest numpy
pytest tests

mkdir /github/workspace/carolina_dist
pip wheel . -w wheelhouse
auditwheel repair wheelhouse/* -w /github/workspace/carolina_dist
#mkdir /github/workspace/carolina_dist
#pip wheel . -w wheelhouse
#auditwheel repair wheelhouse/* -w /github/workspace/carolina_dist

ls -lah /github/workspace/carolina_dist
echo "Copied distributables and installation trace"
#ls -lah /github/workspace/carolina_dist
#echo "Copied distributables and installation trace"

0 comments on commit 181d074

Please sign in to comment.