From 344085b7f0f4a851332143180f20b2cb919fcfc6 Mon Sep 17 00:00:00 2001 From: Santiago Fernandez Madero Date: Wed, 27 May 2020 18:45:56 -0700 Subject: [PATCH] Add linux arm/arm64 libraries checked coreclr test runs (#36910) * Add linux arm/arm64 libraries checked coreclr test runs * Add linux_musl_arm64 * Disable BitmapTests on linux checked coreclr --- eng/pipelines/runtime.yml | 4 ++++ .../System.Drawing.Common/tests/mono/System.Drawing/BitmapTests.cs | 1 + 2 files changed, 5 insertions(+) diff --git a/eng/pipelines/runtime.yml b/eng/pipelines/runtime.yml index 8d69c75..056946c 100644 --- a/eng/pipelines/runtime.yml +++ b/eng/pipelines/runtime.yml @@ -140,6 +140,7 @@ jobs: - Linux_x64 - Linux_arm - Linux_arm64 + - Linux_musl_arm64 - Linux_musl_x64 - Windows_NT_x86 - Windows_NT_x64 @@ -903,6 +904,8 @@ jobs: buildConfig: Release platforms: # - Windows_NT_arm return this when https://github.com/dotnet/runtime/issues/1097 is fixed. + - Linux_arm + - Linux_musl_arm64 - Windows_NT_x86 helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml helixQueueGroup: libraries @@ -924,6 +927,7 @@ jobs: - Windows_NT_x64 - Linux_x64 - Linux_musl_x64 + - Linux_arm64 helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml helixQueueGroup: libraries jobParameters: diff --git a/src/libraries/System.Drawing.Common/tests/mono/System.Drawing/BitmapTests.cs b/src/libraries/System.Drawing.Common/tests/mono/System.Drawing/BitmapTests.cs index 4f32a7d..a2f495e 100644 --- a/src/libraries/System.Drawing.Common/tests/mono/System.Drawing/BitmapTests.cs +++ b/src/libraries/System.Drawing.Common/tests/mono/System.Drawing/BitmapTests.cs @@ -46,6 +46,7 @@ using Xunit; namespace MonoTests.System.Drawing { + [SkipOnCoreClr("https://github.com/dotnet/runtime/issues/37082", TestPlatforms.AnyUnix, RuntimeConfiguration.Checked)] public class TestBitmap { -- 2.7.4