File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -121,8 +121,9 @@ jobs:
121121 # Copying the ConstraintGeometry library there makes it discoverable without
122122 # affecting the release artifact (which is uploaded from WORKSPACE_INSTALL_PATH).
123123 if [[ "$RUNNER_OS" == "Windows" ]]; then
124- # On Windows, DLLs live directly in the build root (build/bin does not exist)
125- cp $GITHUB_WORKSPACE/downstream/ConstraintGeometry/install/bin/ConstraintGeometry.dll $WORKSPACE_BUILD_PATH/
124+ # SOFA_PLUGIN_PATH includes build/bin on Windows; create it so SOFA can scan it
125+ mkdir -p $WORKSPACE_BUILD_PATH/bin
126+ cp $GITHUB_WORKSPACE/downstream/ConstraintGeometry/install/bin/ConstraintGeometry.dll $WORKSPACE_BUILD_PATH/bin/
126127 else
127128 cp $GITHUB_WORKSPACE/downstream/ConstraintGeometry/install/lib/libConstraintGeometry.* $WORKSPACE_BUILD_PATH/lib/
128129 fi
You can’t perform that action at this time.
0 commit comments