Skip to content

Commit 0705aa1

Browse files
auduchinokT-Grovzarytovskii
authored
Add CI leg to test strict indentation (#15643)
Co-authored-by: Tomas Grosup <[email protected]> Co-authored-by: Vlad Zarytovskii <[email protected]>
1 parent d87dd24 commit 0705aa1

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

azure-pipelines.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,33 @@ stages:
347347
ArtifactType: Container
348348
parallel: true
349349

350+
- job: WindowsStrictIndentation
351+
pool:
352+
# The PR build definition sets this variable:
353+
# WindowsMachineQueueName=Windows.vs2022.amd64.open
354+
# and there is an alternate build definition that sets this to a queue that is always scouting the
355+
# next preview of Visual Studio.
356+
name: $(DncEngPublicBuildPool)
357+
demands: ImageOverride -equals $(WindowsMachineQueueName)
358+
timeoutInMinutes: 120
359+
steps:
360+
- checkout: self
361+
clean: true
362+
363+
- script: eng\CIBuild.cmd -compressallmetadata -configuration Release /p:AdditionalFscCmdFlags=--strict-indentation+
364+
displayName: Build
365+
366+
- task: PublishBuildArtifacts@1
367+
displayName: Publish Build BinLog
368+
condition: always()
369+
continueOnError: true
370+
inputs:
371+
PathToPublish: '$(Build.SourcesDirectory)\artifacts\log/Release\Build.VisualFSharp.sln.binlog'
372+
ArtifactName: 'Windows Release build binlogs'
373+
ArtifactType: Container
374+
parallel: true
375+
376+
350377
# Windows With Compressed Metadata
351378
- job: WindowsCompressedMetadata
352379
variables:

0 commit comments

Comments
 (0)