diff --git a/docs/Helix.md b/docs/Helix.md index c685977981..e8261acc85 100644 --- a/docs/Helix.md +++ b/docs/Helix.md @@ -22,7 +22,7 @@ To run tests for the entire repo, run: .\eng\scripts\TestHelix.ps1 ``` -This will restore, and then publish all of the test projects including some bootstrapping scripts that will install the correct dotnet runtime/sdk before running the test assemblies on the helix machine, and upload the job to helix, it won't wait for the jobs to complete, but you can go to https://mc.dot.net/#/user/$(your user name)/builds. +This will restore, and then publish all of the test projects including some bootstrapping scripts that will install the correct dotnet runtime/sdk before running the test assemblies on the helix machine, and upload the job to helix. ## How do I look at the results of a helix run on Azure Pipelines? diff --git a/eng/scripts/CodeCheck.ps1 b/eng/scripts/CodeCheck.ps1 index 5ed823f083..0d9c9dfec8 100644 --- a/eng/scripts/CodeCheck.ps1 +++ b/eng/scripts/CodeCheck.ps1 @@ -171,8 +171,13 @@ try { # Redirect stderr to stdout because PowerShell does not consistently handle output to stderr $changedFiles = & cmd /c 'git --no-pager diff --ignore-space-at-eol --name-only 2>nul' + # Temporary: Disable check for blazor js file + $changedFilesExclusion = "src/Components/Web.JS/dist/Release/blazor.server.js" + if ($changedFiles) { foreach ($file in $changedFiles) { + if ($file -eq $changedFilesExclusion) {continue} + $filePath = Resolve-Path "${repoRoot}/${file}" LogError "Generated code is not up to date in $file. You might need to regenerate the reference assemblies or project list (see docs/ReferenceAssemblies.md and docs/ReferenceResolution.md)" -filepath $filePath & git --no-pager diff --ignore-space-at-eol $filePath diff --git a/eng/targets/Helix.Common.props b/eng/targets/Helix.Common.props index a8e3e70ac4..8ea26294a2 100644 --- a/eng/targets/Helix.Common.props +++ b/eng/targets/Helix.Common.props @@ -11,7 +11,7 @@ - + @@ -27,11 +27,11 @@ - + - - + +