diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index cad5b95407952a..34cb056a89257d 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -192,15 +192,18 @@ jobs: cmake --build ${{ env.BUILD_DIR }} --parallel --config ${{ env.CMAKE_BUILD_TYPE }} - name: CMake configure, build and install - OpenVINO JS API - if: ${{ 'false' }} # 128446 - # if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API - run: - cmake -DCPACK_GENERATOR=NPM -DENABLE_SYSTEM_TBB=OFF -UTBB* -S ${{ env.OPENVINO_REPO }} -B ${{ env.BUILD_DIR }} + if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API + run: | + cmake \ + -DCPACK_GENERATOR=NPM \ + -DENABLE_SYSTEM_TBB=OFF \ + -DENABLE_INTEL_GPU=OFF \ + -S ${{ env.OPENVINO_REPO }} \ + -B ${{ env.BUILD_DIR }} cmake --build ${{ env.BUILD_DIR }} --parallel cmake -DCMAKE_INSTALL_PREFIX=${{ env.INSTALL_DIR_JS }} -P ${{ env.BUILD_DIR }}/cmake_install.cmake - # # Upload build artifacts # @@ -222,8 +225,7 @@ jobs: if-no-files-found: 'error' - name: Upload openvino js package - if: ${{ 'false' }} # 128446 - # 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 @@ -241,8 +243,7 @@ jobs: JS_API: name: OpenVINO JS API needs: [ Build, Smart_CI ] - if: ${{ 'false' }} # 128446 - # if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API + if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API uses: ./.github/workflows/job_openvino_js.yml with: runner: 'macos-13' diff --git a/.github/workflows/mac_arm64.yml b/.github/workflows/mac_arm64.yml index 08692b6ccb4fca..f539fb70ee7983 100644 --- a/.github/workflows/mac_arm64.yml +++ b/.github/workflows/mac_arm64.yml @@ -195,7 +195,7 @@ jobs: run: | cmake \ -DCPACK_GENERATOR=NPM \ - -DENABLE_SYSTEM_TBB=OFF -UTBB* \ + -DENABLE_SYSTEM_TBB=OFF \ -DENABLE_INTEL_GPU=OFF \ -S ${{ env.OPENVINO_REPO }} \ -B ${{ env.BUILD_DIR }}