From cb83d2b1a97ef06cb3fbbb9779a0cbf157a9fdde Mon Sep 17 00:00:00 2001 From: Yulong Wang <7679871+fs-eire@users.noreply.github.com> Date: Tue, 18 Apr 2023 17:41:47 -0700 Subject: [PATCH] [js/web] allow script to use partial success build (#15547) ### Description allow script `npm run pull:wasm` to use partial success build. --- js/web/script/pull-prebuilt-wasm-artifacts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/web/script/pull-prebuilt-wasm-artifacts.ts b/js/web/script/pull-prebuilt-wasm-artifacts.ts index 6648b7281d..bd6fa1af4f 100644 --- a/js/web/script/pull-prebuilt-wasm-artifacts.ts +++ b/js/web/script/pull-prebuilt-wasm-artifacts.ts @@ -76,7 +76,7 @@ console.log('=== Start to pull WebAssembly artifacts from CI ==='); downloadJson( 'https://dev.azure.com/onnxruntime/onnxruntime/_apis/build/builds?api-version=6.1-preview.6' + '&definitions=161' + - '&resultFilter=succeeded' + + '&resultFilter=succeeded%2CpartiallySucceeded' + '&$top=1' + '&repositoryId=Microsoft/onnxruntime' + '&repositoryType=GitHub' +