Skip to content

Commit 2a3847a

Browse files
committed
vcpkg: windows: fix logs uploading
1 parent 1a655c4 commit 2a3847a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,10 @@ jobs:
317317
# accorging to github actions windows image docs, it should define VCPKG_INSTALLATION_ROOT env var,
318318
# but on practice it is not set, so specify vcpkg root path explicitly
319319
with: {name: VCPKG_ROOT, value: "C:/vcpkg/"}
320+
- name: make local symbolic link to VCPKG installation directory
321+
# this is needed at least for actions/upload-artifact to be able to find vcpkg install logs
322+
shell: powershell
323+
run: New-Item -ItemType SymbolicLink -Path vcpkg-installation -Target $env:VCPKG_ROOT
320324
- name: prepare vcpkg port
321325
run: myci-vcpkg-prepare.ps1 -gitref ${{ github.sha }}
322326
- name: test vcpkg port

0 commit comments

Comments
 (0)