Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions scripts/dockcross-manylinux-build-module-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,13 @@ for MODULE_INFO in ${ITK_MODULE_PREQ_TOPLEVEL//:/ }; do
if [[ -d ../ITKPythonPackage ]]; then
ln -s ../ITKPythonPackage
ln -s ./ITKPythonPackage/oneTBB-prefix
# Cache has already been downloaded, just build
./ITKPythonPackage/scripts/dockcross-manylinux-build-module-wheels.sh "$@"
else
# No cache available, download it and build
echo "Building module dependency ${MODULE_NAME}"
./dockcross-manylinux-download-cache-and-build-module-wheels.sh "$@"
fi

echo "Building module dependency ${MODULE_NAME}"
./dockcross-manylinux-download-cache-and-build-module-wheels.sh "$@"
popd

echo "Cleaning up module dependency"
Expand Down