Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpar committed Mar 7, 2024
1 parent 7ff5d48 commit 40affd3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ stages:
- powershell: eng/make-bootstrap.ps1 -output $(bootstrapDir)
displayName: Build Bootstrap Compiler

- powershell: eng/test-determinism.ps1 -configuration Debug -bootstrapDir $(bootstrapDir)
- powershell: eng/test-determinism.ps1 -configuration Debug -bootstrapDir $(bootstrapDir) -ci
displayName: Build - Validate determinism

- template: eng/pipelines/publish-logs.yml
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/build-bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ steps:
displayName: Build Bootstrap Compiler

- powershell: eng/test-build-correctness.ps1 -ci -configuration Release -enableDumps -bootstrapDir '$(Build.SourcesDirectory)/artifacts/bootstrap/ci-bootstrap'
displayName: Build - Validate correctness
displayName: Build - Validate Correctness

- template: publish-logs.yml
parameters:
Expand Down
3 changes: 2 additions & 1 deletion eng/test-build-correctness.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ try {
Write-Host "Building bootstrap compiler"
$bootstrapDir = Join-Path $ArtifactsDir (Join-Path "bootstrap" "correctness")
& eng/make-bootstrap.ps1 -output $bootstrapDir -ci:$ci
Test-LastExitCode
}

Write-Host "Building Roslyn"
& eng/build.ps1 -restore -build -bootstrapDir:$bootstrapDir -ci:$ci -prepareMachine:$prepareMachine -runAnalyzers:$true -configuration:$configuration -pack -binaryLog -useGlobalNuGetCache:$false -warnAsError:$true -properties `"/p:RoslynEnforceCodeStyle=true`
& eng/build.ps1 -restore -build -bootstrapDir:$bootstrapDir -ci:$ci -prepareMachine:$prepareMachine -runAnalyzers:$true -configuration:$configuration -pack -binaryLog -useGlobalNuGetCache:$false -warnAsError:$true -properties:"/p:RoslynEnforceCodeStyle=true"
Test-LastExitCode

Subst-TempDir
Expand Down

0 comments on commit 40affd3

Please sign in to comment.