Skip to content

Commit

Permalink
Fix pipeline trigger for running libraries tests against Mono
Browse files Browse the repository at this point in the history
Follow-up to dotnet#1934

Also disables one test that seems to be flaky on Mono.
  • Loading branch information
akoeplinger committed Jan 23, 2020
1 parent 3c5e7de commit 037390e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ jobs:

#
# Libraries Test Build
# Only when CoreCLR or Libraries is changed
# Only when CoreCLR, Mono or Libraries is changed
#
- template: /eng/pipelines/common/platform-matrix.yml
parameters:
Expand All @@ -387,6 +387,7 @@ jobs:
or(
eq(dependencies.checkout.outputs['SetPathVars_libraries.containsChange'], true),
eq(dependencies.checkout.outputs['SetPathVars_coreclr.containsChange'], true),
eq(dependencies.checkout.outputs['SetPathVars_mono.containsChange'], true),
eq(variables['isFullMatrix'], true))
#
Expand Down
3 changes: 3 additions & 0 deletions src/mono/netcore/CoreFX.issues.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,9 @@
# Requires precise GC (should be ignored in dotnet/corefx for mono)
-nomethod System.Threading.Tasks.Tests.ExecutionContextFlowTest.TaskCompletionSourceDoesntCaptureExecutionContext

# flaky, causes stack overflow
-nomethod System.Threading.Tasks.Tests.TaskContinueWithTests.LongContinuationChain_ContinueWith_DoesNotStackOverflow

####################################################################
## System.Threading.ThreadPool.Tests
####################################################################
Expand Down

0 comments on commit 037390e

Please sign in to comment.