[wasm] Wasm.Build.Tests: disable tests failing on CI (#71020)
authorAnkit Jain <radical@gmail.com>
Tue, 21 Jun 2022 02:18:21 +0000 (22:18 -0400)
committerGitHub <noreply@github.com>
Tue, 21 Jun 2022 02:18:21 +0000 (22:18 -0400)
* [wasm] Wasm.Build.Tests: disable tests failing on CI

.. due to being oomkill'ed.

* [wasm] Don't fail the job when firefox tests fail, as they are known to be unstable

eng/pipelines/runtime-staging.yml
src/tests/BuildWasmApps/Wasm.Build.Tests/BlazorWasmBuildPublishTests.cs

index 35cc083..bc75954 100644 (file)
@@ -97,6 +97,8 @@ jobs:
     platforms:
       - Browser_wasm_firefox
     browser: firefox
+    # ff tests are unstable currently
+    shouldContinueOnError: true
     alwaysRun: ${{ variables.isRollingBuild }}
 
 #
index 34eb467..f034d2f 100644 (file)
@@ -82,6 +82,7 @@ namespace Wasm.Build.Tests
         [InlineData("Debug", false)]
         [InlineData("Release", true)]
         [InlineData("Release", false)]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/70985", TestPlatforms.Linux)]
         public void NativeBuild_WithDeployOnBuild_UsedByVS(string config, bool nativeRelink)
         {
             string id = $"blz_deploy_on_build_{config}_{nativeRelink}";
@@ -143,6 +144,7 @@ namespace Wasm.Build.Tests
         [Theory]
         [InlineData("Debug")]
         [InlineData("Release")]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/70985", TestPlatforms.Linux)]
         public void WithNativeReference_AOTInProjectFile(string config)
         {
             string id = $"blz_nativeref_aot_{config}";
@@ -160,6 +162,7 @@ namespace Wasm.Build.Tests
         [Theory]
         [InlineData("Debug")]
         [InlineData("Release")]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/70985", TestPlatforms.Linux)]
         public void WithNativeReference_AOTOnCommandLine(string config)
         {
             string id = $"blz_nativeref_aot_{config}";