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 8ad9e12 commit 0efb479Copy full SHA for 0efb479
.github/workflows/ci.yml
@@ -474,6 +474,10 @@ jobs:
474
# accorging to github actions windows image docs, it should define VCPKG_INSTALLATION_ROOT env var,
475
# but on practice it is not set, so specify vcpkg root path explicitly
476
with: {name: VCPKG_ROOT, value: "C:/vcpkg/"}
477
+ - name: make local symbolic link to VCPKG installation directory
478
+ # this is needed at least for actions/upload-artifact to be able to find vcpkg install logs
479
+ shell: powershell
480
+ run: New-Item -ItemType SymbolicLink -Path vcpkg-installation -Target $env:VCPKG_ROOT
481
- name: prepare vcpkg port
482
run: myci-vcpkg-prepare.ps1 -gitref ${{ github.sha }}
483
- name: test vcpkg port
0 commit comments