We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb28594 commit 5f567beCopy full SHA for 5f567be
.github/workflows/build.yml
@@ -18,11 +18,8 @@ jobs:
18
- run: cmake . -G "Visual Studio 17 2022" -Bcpp_build
19
- run: cmake --build cpp_build --config Release
20
- run: cpp_build\Release\ExternalLibraryTest.exe
21
- - run: where python
22
- - run: which python
23
- run: |
24
- $python_exe = where python
25
- $python_exe = $python_exe -replace "\\", "/"
+ $python_exe = "${{ env.pythonLocation }}/python.exe" -replace "\\", "/"
26
cmake . -G "Visual Studio 17 2022" -B python_build -D EXTERNAL_LANGUAGE=Python -D PYTHON_EXE="$python_exe"
27
- run: cmake --build python_build --config Release
28
- run: python -m pip install -e Python
0 commit comments