Skip to content

Commit 64c9e7c

Browse files
authored
Move wasm queue to one that has more capacity and condition it (#39373)
1 parent afc67c8 commit 64c9e7c

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

eng/pipelines/libraries/helix-queues-setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,6 @@ jobs:
138138

139139
# WebAssembly
140140
- ${{ if eq(parameters.platform, 'Browser_wasm') }}:
141-
- Ubuntu.2004.Amd64.Open
141+
- Ubuntu.1804.Amd64.Open
142142

143143
${{ insert }}: ${{ parameters.jobParameters }}

eng/pipelines/runtime.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,6 @@ jobs:
129129
- eng/pipelines/coreclr/*
130130
- eng/pipelines/mono/*
131131
- eng/pipelines/libraries/*
132-
133-
# Temporary workaround to: https://github.com/dotnet/runtime/issues/39238
134-
- subset: testsproj
135-
include:
136-
- src/libraries/tests.proj
137132

138133
#
139134
# Build CoreCLR checked
@@ -318,8 +313,8 @@ jobs:
318313
- Browser_wasm
319314
variables:
320315
# map dependencies variables to local variables
321-
- name: testsProjContainsChange
322-
value: $[ dependencies.checkout.outputs['SetPathVars_testsproj.containsChange'] ]
316+
- name: librariesContainsChange
317+
value: $[ dependencies.checkout.outputs['SetPathVars_libraries.containsChange'] ]
323318
- name: monoContainsChange
324319
value: $[ dependencies.checkout.outputs['SetPathVars_mono.containsChange'] ]
325320
jobParameters:
@@ -338,10 +333,9 @@ jobs:
338333
extraStepsParameters:
339334
creator: dotnet-bot
340335
testRunNamePrefixSuffix: Mono_$(_BuildConfig)
341-
# update once: https://github.com/dotnet/runtime/issues/39238 is fixed
342336
condition: >-
343337
or(
344-
eq(variables['testsProjContainsChange'], true),
338+
eq(variables['librariesContainsChange'], true),
345339
eq(variables['monoContainsChange'], true),
346340
eq(variables['isFullMatrix'], true))
347341

0 commit comments

Comments
 (0)