Skip to content

Commit 39c5591

Browse files
authored
Merge branch 'master' into feature/serialize-specific-output-names-of-result-to-ir
2 parents 3728174 + 59cc460 commit 39c5591

File tree

664 files changed

+1666
-2431
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

664 files changed

+1666
-2431
lines changed

.github/actions/common/constants.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ class EventType(Enum):
1616
'public_linux_ubuntu_24_04_x86_64_release',
1717
'public_windows_vs2019_Release',
1818
'public_windows_vs2019_Debug',
19+
'public_windows_vs2022_Release',
20+
'public_windows_vs2022_Debug',
1921
'public_manylinux2014_x86_64_release',
2022
)
2123
ProductType = Enum('ProductType', {t.upper(): t for t in productTypes})
@@ -41,5 +43,5 @@ class EventType(Enum):
4143
PlatformKey.UBUNTU20_ARM64: ProductType.PUBLIC_LINUX_UBUNTU_20_04_ARM64_RELEASE,
4244
PlatformKey.UBUNTU22_X86_64: ProductType.PUBLIC_LINUX_UBUNTU_22_04_X86_64_RELEASE,
4345
PlatformKey.UBUNTU24_X86_64: ProductType.PUBLIC_LINUX_UBUNTU_24_04_X86_64_RELEASE,
44-
PlatformKey.WINDOWS_X86_64: ProductType.PUBLIC_WINDOWS_VS2019_RELEASE,
46+
PlatformKey.WINDOWS_X86_64: ProductType.PUBLIC_WINDOWS_VS2022_RELEASE,
4547
}

.github/github_org_control/check_org.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2018-2021 Intel Corporation
1+
# Copyright (C) 2018-2025 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

44
"""

.github/github_org_control/check_pr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2018-2021 Intel Corporation
1+
# Copyright (C) 2018-2025 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

44
"""

.github/github_org_control/configs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2018-2021 Intel Corporation
1+
# Copyright (C) 2018-2025 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

44
"""

.github/github_org_control/github_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2018-2021 Intel Corporation
1+
# Copyright (C) 2018-2025 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

44
"""

.github/github_org_control/ldap_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2018-2021 Intel Corporation
1+
# Copyright (C) 2018-2025 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

44
"""

.github/workflows/code_style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: suggester / clang-format
3737
if: startsWith(github.event_name, 'pull_request')
38-
uses: reviewdog/action-suggester@db4abb16fbaabe386831e5addb7be1485d0d63d3 # v1.18.0
38+
uses: reviewdog/action-suggester@a3026c6020837c23b61a79d12db223a00df19e6a # v1.19.0
3939
with:
4040
github_token: ${{ secrets.GITHUB_TOKEN }}
4141
level: warning
@@ -67,7 +67,7 @@ jobs:
6767

6868
- name: suggester / clang-format
6969
if: startsWith(github.event_name, 'pull_request')
70-
uses: reviewdog/action-suggester@db4abb16fbaabe386831e5addb7be1485d0d63d3 # v1.18.0
70+
uses: reviewdog/action-suggester@a3026c6020837c23b61a79d12db223a00df19e6a # v1.19.0
7171
with:
7272
github_token: ${{ secrets.GITHUB_TOKEN }}
7373
level: warning

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ jobs:
130130
lcov --capture --directory ${{ github.workspace }}/. --output-file coverage.info
131131
genhtml coverage.info --output-directory coverage-report
132132
- name: Collect coverage
133-
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
133+
uses: codecov/codecov-action@5a605bd92782ce0810fa3b8acc235c921b497052 # v5.2.0
134134
with:
135135
verbose: true

.github/workflows/job_build_windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
BUILD_DIR: "${{ github.workspace }}\\openvino_build"
5757
ARTIFACTS_SHARE: "C:\\mount\\build-artifacts"
5858
MANIFEST_PATH: "${{ github.workspace }}\\manifest.yml"
59-
PRODUCT_TYPE: 'public_windows_vs2019_${{ inputs.build-type }}'
59+
PRODUCT_TYPE: 'public_windows_vs2022_${{ inputs.build-type }}'
6060
steps:
6161
- name: Clone OpenVINO
6262
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -154,10 +154,10 @@ jobs:
154154
restore-keys: |
155155
${{ runner.os }}-${{ runner.arch }}-ccache
156156
157-
- name: Configure Developer Command Prompt for Microsoft Visual C++ (2019)
157+
- name: Configure Developer Command Prompt for Microsoft Visual C++
158158
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
159159
with:
160-
toolset: 14.29
160+
toolset: 14.40 # v2022
161161

162162
- name: Set SSL_CERT_FILE for model downloading for unit tests
163163
run: echo SSL_CERT_FILE=$(python3 -m certifi) >> $env:GITHUB_ENV
@@ -229,7 +229,7 @@ jobs:
229229
& $pythonExecutablePath -m pip install -r ${{ env.OPENVINO_REPO }}/src/bindings/python/wheel/requirements-dev.txt
230230
231231
cmake -DPython3_EXECUTABLE="$pythonExecutablePath" -DOpenVINODeveloperPackage_DIR=${{ env.BUILD_DIR }} -S ${{ env.OPENVINO_REPO }}/src/bindings/python -B "$pyBuildDir" &&
232-
cmake --build "$pyBuildDir" --parallel --config ${{ env.CMAKE_BUILD_TYPE }} &&
232+
cmake --build "$pyBuildDir" --parallel $ENV:NUMBER_OF_PROCESSORS --target ie_wheel --config ${{ env.CMAKE_BUILD_TYPE }} &&
233233
cmake --install "$pyBuildDir" --config ${{ env.CMAKE_BUILD_TYPE }} --prefix ${{ env.INSTALL_WHEELS_DIR }} --component python_wheels
234234
if ($LASTEXITCODE -ne 0) {
235235
Write-Host "Failed to build Python wheels for Python $pyVersion"

.github/workflows/job_python_api_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
working-directory: ${{ env.INSTALL_TEST_DIR }}
6767

6868
- name: Fetch setup_python and install wheels actions
69-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
69+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7070
timeout-minutes: 15
7171
with:
7272
sparse-checkout: |
@@ -122,7 +122,7 @@ jobs:
122122
123123
- name: Clone API snippets
124124
if: ${{ runner.os != 'macOS' && fromJSON(inputs.affected-components).docs_snippets.test }}
125-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
125+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
126126
timeout-minutes: 15
127127
with:
128128
sparse-checkout: docs/articles_en/assets/snippets

0 commit comments

Comments
 (0)