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 eefdc5b commit 6beae4aCopy full SHA for 6beae4a
.github/workflows/test-python-win.yml
@@ -49,16 +49,16 @@ jobs:
49
run: |
50
ls
51
$VCPKG_ROOT = "C:/vcpkg"
52
- $METIS_ROOT = "${{ runner.workspace }}/installs"
+ $METIS_ROOT = Join-Path "${{ runner.workspace }}" "installs"
53
$TRIPLET = "x64-windows-static"
54
$content = Get-Content pyproject.toml -Raw
55
$newContent = $content -replace 'cmake\.args = \[\s*"-DPYTHON_BUILD_SETUP=ON"\s*\]', @"
56
cmake.args = [
57
"-DPYTHON_BUILD_SETUP=ON",
58
"-DHIPO=ON",
59
- "-DCMAKE_TOOLCHAIN_FILE=$VCPKG_ROOT",
+ "-DCMAKE_TOOLCHAIN_FILE='$VCPKG_ROOT'",
60
"-DVCPKG_TARGET_TRIPLET=$TRIPLET",
61
- "-DMETIS_ROOT=$METIS_ROOT"
+ "-DMETIS_ROOT='$METIS_ROOT'"
62
]
63
"@
64
$newContent | Set-Content pyproject.toml
0 commit comments