Skip to content

Commit

Permalink
update wheel workflow to new folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
damskii9992 committed Jan 8, 2025
1 parent 0a453a4 commit ae418ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,14 @@ jobs:
run: |
if [ "${RUNNER_OS}" == "Windows" ]; then
cd bin/Release
cp *.dll ../../../imagingsuite/package/pymuhrec
cp *.dll PlugIns/BackProjectors/*.dll PlugIns/Preprocessors/*.dll ../../../imagingsuite/package/pymuhrec
cp *.pyd ../../../imagingsuite/package/pymuhrec
elif [ "${RUNNER_OS}" == "Linux" ]; then
cd Release/lib
cp * ../../../imagingsuite/package/pymuhrec
cd Release
cp lib/* PlugIns/BackProjectors/*.so PlugIns/Preprocessors/*.so ../../imagingsuite/package/pymuhrec
elif [ "${RUNNER_OS}" == "macOS" ]; then
cd Release/lib
cp *.dylib ../../../imagingsuite/package/pymuhrec
cp *.dylib BackProjectors/*.dylib Preprocessors/*.dylib ../../../imagingsuite/package/pymuhrec
cp *.so ../../../imagingsuite/package/pymuhrec
fi
Expand Down

0 comments on commit ae418ec

Please sign in to comment.