We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f26712 commit 1afbda5Copy full SHA for 1afbda5
1 file changed
.github/actions/setup-native-prereqs/action.yml
@@ -43,6 +43,10 @@ runs:
43
if: inputs.target == 'x86_64-pc-windows-msvc'
44
shell: pwsh
45
run: |
46
+ if ($env:VCPKG_DEFAULT_BINARY_CACHE) {
47
+ New-Item -ItemType Directory -Force -Path $env:VCPKG_DEFAULT_BINARY_CACHE | Out-Null
48
+ }
49
+
50
# vcpkg is pre-installed on GitHub-hosted Windows runners
51
vcpkg install glib:x64-windows libusb:x64-windows fftw3:x64-windows pkgconf:x64-windows
52
@@ -62,5 +66,9 @@ runs:
62
66
if: inputs.target == 'aarch64-pc-windows-msvc'
63
67
64
68
69
70
71
72
65
73
74
vcpkg install glib:arm64-windows libusb:arm64-windows fftw3:arm64-windows
0 commit comments