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 69475da commit 646f347Copy full SHA for 646f347
.github/workflows/cpp_windows.yml
@@ -159,5 +159,7 @@ jobs:
159
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{ inputs.arch }}
160
# For ORC
161
set TZDIR=${{ steps.setup-msys2.outputs.msys2-location }}\usr\share\zoneinfo
162
- set VCPKG_ROOT=%VCPKG_ROOT_KEEP%
+
163
+ # Convert VCPKG Windows path to MSYS path
164
+ for /f "usebackq delims=" %%I in (`bash -c "cygpath -u \"$VCPKG_ROOT_KEEP\""` ) do set VCPKG_ROOT=%%I
165
bash -c "ci/scripts/cpp_test.sh $(pwd) $(pwd)/build"
0 commit comments