From 25bbd8d4ebed60c28f702a9fe6b0e6a12c19de9c Mon Sep 17 00:00:00 2001 From: Yulong Wang <7679871+fs-eire@users.noreply.github.com> Date: Wed, 11 Oct 2023 21:21:21 -0700 Subject: [PATCH] [js/web] allow gpu IO binding tests to fail temporarily (#17892) ### Description allow gpu IO binding tests to fail temporarily. when the root cause is still in investigation, use `continueOnError: true` to allow the test to fail without blocking PRs. --- .../ci_build/github/azure-pipelines/templates/win-web-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/ci_build/github/azure-pipelines/templates/win-web-ci.yml b/tools/ci_build/github/azure-pipelines/templates/win-web-ci.yml index 788b02f539..187c765660 100644 --- a/tools/ci_build/github/azure-pipelines/templates/win-web-ci.yml +++ b/tools/ci_build/github/azure-pipelines/templates/win-web-ci.yml @@ -171,6 +171,10 @@ jobs: workingDirectory: '$(Build.SourcesDirectory)\js\web' displayName: 'Run ort-web tests (Suite1, webgpu, IO-binding=gpu-tensor)' condition: eq('${{ parameters.RunWebGpuTests }}', 'true') + # temporarily allow this test to fail, so that people are not blocked. + # investigation is ongoing for the root cause of the random failure (Edge crash). + # TODO: remove this line once the root cause is found and fixed. + continueOnError: true - script: | npm test -- suite1 -e=edge -b=webgpu --io-binding=gpu-location $(webgpuCommandlineExtraFlags) workingDirectory: '$(Build.SourcesDirectory)\js\web'