We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25bbb20 commit a02925bCopy full SHA for a02925b
azure-pipelines-templates/build-preparations.yml
@@ -24,3 +24,12 @@ steps:
24
inputs:
25
targetType: 'inline'
26
script: New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
27
+
28
+ - task: PowerShell@2
29
+ displayName: Add dummy cmake presets
30
+ condition: ne(variables['Build.Repository.Name'], 'nanoframework/nf-Community-Targets')
31
+ inputs:
32
+ workingDirectory: $(Build.SourcesDirectory)\targets-community
33
+ targetType: 'inline'
34
+ script: |
35
+ New-Item -Path . -Name "CMakePresets.json" -ItemType "file" -Value "{`n""version"": 4,`n""include"": []`n}"
0 commit comments