We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 962e440 commit 925f6e5Copy full SHA for 925f6e5
1 file changed
.github/workflows/ci.yml
@@ -117,6 +117,19 @@ jobs:
117
else
118
echo "REGRESSION_DIR=$REGRESSION_DIR"
119
fi
120
+
121
+ if [[ "$RUNNER_OS" == "Windows" ]]; then
122
+ echo "$BUILD_DIR/lib" >> $GITHUB_PATH
123
+ echo "$BUILD_DIR/bin" >> $GITHUB_PATH
124
125
+ pythonroot="$(dirname "${{ inputs.python_exe }}")"
126
+ pythonroot=$(echo "$pythonroot" | tr '\\' '/' | sed 's/^\([A-Za-z]\):/\/\L\1/')
127
+ echo "$pythonroot" >> $GITHUB_PATH
128
+ echo "$pythonroot/DLLs" >> $GITHUB_PATH
129
+ echo "$pythonroot/Lib" >> $GITHUB_PATH
130
131
+ echo "$SOFA_ROOT/plugins/SofaPython3/bin" >> $GITHUB_PATH
132
+ fi
133
- name: Install Python dependencies
134
shell: bash
135
run: |
0 commit comments