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