We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ee3763 commit 2378485Copy full SHA for 2378485
.github/workflows/build_steps.yml
@@ -88,6 +88,11 @@ jobs:
88
disk-root: "D:" # This is also the checkout directory. Total size 12GB.
89
continue-on-error: true
90
91
+ # Needed because the compiler in 17.12.0 (MSVC 19.42.34433.0) fails to compile folly. Issue raised https://github.com/microsoft/vcpkg/issues/42233
92
+ - name: Install VS2022 BuildTools 17.11.6
93
+ if: matrix.os == 'windows'
94
+ run: choco install -y visualstudio2022buildtools --version=117.11.6.0 --params "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --installChannelUri https://aka.ms/vs/17/release/180911598_-255012421/channel"
95
+
96
- name: Enable Windows compiler commands
97
if: matrix.os == 'windows'
98
uses: ilammy/[email protected]
0 commit comments