We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c03afcd commit ee59d3eCopy full SHA for ee59d3e
.github/workflows/ci.yml
@@ -460,6 +460,10 @@ jobs:
460
# accorging to github actions windows image docs, it should define VCPKG_INSTALLATION_ROOT env var,
461
# but on practice it is not set, so specify vcpkg root path explicitly
462
with: {name: VCPKG_ROOT, value: "C:/vcpkg/"}
463
+ - name: make local symbolic link to VCPKG installation directory
464
+ # this is needed at least for actions/upload-artifact to be able to find vcpkg install logs
465
+ shell: powershell
466
+ run: New-Item -ItemType SymbolicLink -Path vcpkg-installation -Target $env:VCPKG_ROOT
467
- name: prepare vcpkg port
468
run: myci-vcpkg-prepare.ps1 -gitref ${{ github.sha }}
469
- name: test vcpkg port
0 commit comments