We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c543840 commit 6e3901cCopy full SHA for 6e3901c
1 file changed
.github/workflows/ci-pr-validation.yaml
@@ -260,6 +260,15 @@ jobs:
260
Pop-Location
261
}
262
263
+ - name: Ensure vcpkg has full history(windows)
264
+ if: runner.os == 'Windows'
265
+ shell: pwsh
266
+ run: |
267
+ $isShallow = (git -C "${{ env.VCPKG_ROOT }}" rev-parse --is-shallow-repository).Trim()
268
+ if ($isShallow -eq "true") {
269
+ git -C "${{ env.VCPKG_ROOT }}" fetch --unshallow
270
+ }
271
+
272
- name: remove system vcpkg(windows)
273
if: runner.os == 'Windows'
274
run: rm -rf "$VCPKG_INSTALLATION_ROOT"
0 commit comments