Skip to content

Commit

Permalink
Try to fix the hangs on the browser-wasm linux Release LibraryTests_E…
Browse files Browse the repository at this point in the history
…AT lanes by limiting concurrency. (dotnet#97491)
  • Loading branch information
vargaz authored Jan 25, 2024
1 parent 7e2dd59 commit ee5d986
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
platforms:
- browser_wasm
nameSuffix: _EAT
extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)
extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS) /maxcpucount:1
runAOT: false
isExtraPlatformsBuild: ${{ parameters.isExtraPlatformsBuild }}
isWasmOnlyBuild: ${{ parameters.isWasmOnlyBuild }}
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ extends:
runAOT: false
shouldRunSmokeOnly: false
alwaysRun: ${{ variables.isRollingBuild }}
extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)
extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS) /maxcpucount:2

# AOT Library tests
- template: /eng/pipelines/common/templates/wasm-library-aot-tests.yml
Expand Down

0 comments on commit ee5d986

Please sign in to comment.