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 7e7728b commit c7813bbCopy full SHA for c7813bb
.github/workflows/ci.yml
@@ -461,6 +461,10 @@ jobs:
461
# accorging to github actions windows image docs, it should define VCPKG_INSTALLATION_ROOT env var,
462
# but on practice it is not set, so specify vcpkg root path explicitly
463
with: {name: VCPKG_ROOT, value: "C:/vcpkg/"}
464
+ - name: make local symbolic link to VCPKG installation directory
465
+ # this is needed at least for actions/upload-artifact to be able to find vcpkg install logs
466
+ shell: powershell
467
+ run: New-Item -ItemType SymbolicLink -Path vcpkg-installation -Target $env:VCPKG_ROOT
468
- name: prepare vcpkg port
469
run: myci-vcpkg-prepare.ps1 -gitref ${{ github.sha }}
470
- name: test vcpkg port
0 commit comments