Skip to content

Commit 9231f34

Browse files
authored
[browser] OOM on monointerpreter - disable tests (#115574)
1 parent b85dd69 commit 9231f34

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/tests/build.proj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,12 @@
443443

444444
<!-- We need to build group #1 manually as it doesn't have a _GroupStartsWith item associated with it, see the comment in Common\dirs.proj -->
445445
<MSBuild Projects="$(MSBuildThisFileFullPath)" Targets="BuildManagedTestGroup" Properties="__TestGroupToBuild=1;__SkipRestorePackages=1" />
446-
<MSBuild Projects="$(MSBuildThisFileFullPath)" Targets="BuildManagedTestGroup" Properties="__TestGroupToBuild=%(_GroupStartsWith.GroupNumber);__SkipRestorePackages=1" />
446+
<!-- ActiveIssue https://github.com/dotnet/runtime/issues/114123
447+
The groups 2..n are disabled for browser target because they get OOM kill in CI.
448+
-->
449+
<MSBuild Projects="$(MSBuildThisFileFullPath)" Targets="BuildManagedTestGroup" Properties="__TestGroupToBuild=%(_GroupStartsWith.GroupNumber);__SkipRestorePackages=1"
450+
Condition="'$(TargetOS)' != 'browser' or '$(ContinuousIntegrationBuild)' != 'true'"
451+
/>
447452
</Target>
448453

449454
<Target Name="BuildManagedTestGroup"

0 commit comments

Comments
 (0)