Enable long paths before building on test machines

This commit is contained in:
David Wengier 2024-12-05 13:05:27 +11:00
Родитель c4899e8305
Коммит 5fb35647d9
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -29,6 +29,15 @@ steps:
displayName: Set Feature Flags
condition: and(succeeded(), ne(variables['FeatureFlag'], ''))
- powershell: New-ItemProperty
-Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem"
-Name "LongPathsEnabled"
-Value "1"
-PropertyType DWORD
-Force
displayName: Enable Long Paths
condition: succeeded()
- script: eng\cibuild.cmd
-configuration ${{ parameters.configuration }}
-msbuildEngine vs