We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ee3763 commit 084b39cCopy full SHA for 084b39c
.github/workflows/build_steps.yml
@@ -88,6 +88,13 @@ 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: Add msbuild to PATH
93
+ if: matrix.os == 'windows'
94
+ uses: microsoft/setup-msbuild@v2
95
+ with:
96
+ vs-version: '17.11.6'
97
+
98
- name: Enable Windows compiler commands
99
if: matrix.os == 'windows'
100
uses: ilammy/[email protected]
0 commit comments