diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index caf1d2ee7edcce..871bb09c02c68c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -252,8 +252,7 @@ jobs: if-no-files-found: 'error' - name: Upload openvino js package - if: ${{ 'false' }} # 128689 - # if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API + if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API uses: actions/upload-artifact@v3 with: name: openvino_js_package @@ -364,8 +363,7 @@ jobs: env: OPENVINO_JS_DIR: "${{ github.workspace }}\\openvino\\src\\bindings\\js" OPENVINO_JS_LIBS_DIR: "${{ github.workspace }}\\openvino\\src\\bindings\\js\\node\\bin" - if: ${{ 'false' }} # 128689 - # if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API + if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API steps: - name: Fetch OpenVINO JS sources diff --git a/src/bindings/js/node/include/infer_request.hpp b/src/bindings/js/node/include/infer_request.hpp index f39489b23ef4ad..483ac422e69426 100644 --- a/src/bindings/js/node/include/infer_request.hpp +++ b/src/bindings/js/node/include/infer_request.hpp @@ -102,7 +102,7 @@ class InferRequestWrap : public Napi::ObjectWrap { /** @brief Checks incoming Napi::Value and calls overloaded infer() method */ Napi::Value infer_dispatch(const Napi::CallbackInfo& info); -// 128760 +// 131123 #ifndef _WIN32 /** @brief Checks incoming Napi::Value and asynchronously returns the result of inference. */ Napi::Value infer_async(const Napi::CallbackInfo& info); diff --git a/src/bindings/js/node/src/infer_request.cpp b/src/bindings/js/node/src/infer_request.cpp index 713c9b9e969113..b8e1f809af2e2a 100644 --- a/src/bindings/js/node/src/infer_request.cpp +++ b/src/bindings/js/node/src/infer_request.cpp @@ -198,7 +198,7 @@ void InferRequestWrap::infer(const Napi::Object& inputs) { Napi::Value InferRequestWrap::get_compiled_model(const Napi::CallbackInfo& info) { return CompiledModelWrap::wrap(info.Env(), _infer_request.get_compiled_model()); } -// 128760 +// 131123 #ifndef _WIN32 void FinalizerCallback(Napi::Env env, void* finalizeData, TsfnContext* context) { context->native_thread.join(); diff --git a/src/bindings/js/node/tests/infer_request.test.js b/src/bindings/js/node/tests/infer_request.test.js index 159b34f938f6e2..bd05da9400c998 100644 --- a/src/bindings/js/node/tests/infer_request.test.js +++ b/src/bindings/js/node/tests/infer_request.test.js @@ -79,7 +79,7 @@ describe('InferRequest', () => { }); }); - // 128760 + // 131123 if (os.platform() !== 'win32') { it('Test inferAsync(inputData: { [inputName: string]: Tensor })', () => { inferRequestAsync.inferAsync({ data: tensor }).then(result => {