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 9d900bb commit 2245cfaCopy full SHA for 2245cfa
1 file changed
.github/workflows/build.yml
@@ -79,6 +79,12 @@ jobs:
79
restore-keys: |
80
vcpkg-${{ runner.os }}-${{ matrix.os-version }}-${{ matrix.crypto }}-
81
82
+ - name: Ensure vcpkg cache directories exist
83
+ run: |
84
+ New-Item -ItemType Directory -Path "${{ env.VCPKG_ROOT }}/downloads" -Force | Out-Null
85
+ New-Item -ItemType Directory -Path "${{ env.VCPKG_DEFAULT_BINARY_CACHE }}" -Force | Out-Null
86
+ shell: pwsh
87
+
88
# Mark all directories as safe so checkouts performed in CMakeLists.txt don't cause "unsafe repository" errors.
89
# See https://github.com/actions/checkout/issues/766
90
- name: Configure Git
0 commit comments