Skip to content

Commit 53f034d

Browse files
authored
Merge branch 'master' into EISW-204381_add_per_output_threshold
2 parents bcba745 + 5eb5742 commit 53f034d

File tree

287 files changed

+12844
-1500
lines changed

Some content is hidden

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

287 files changed

+12844
-1500
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ Before posting any comment, apply this gate:
9999
- Do not review vendored/third-party sources under `thirdparty/` unless the PR explicitly modifies integration or patch logic.
100100
- Do not enforce component-specific runtime behavior rules on docs-only PRs.
101101
- For generated or auto-updated files (for example stubs/version bumps), comment only if there is clear breakage risk.
102+
- Python stub files (`.pyi`) under `src/bindings/python/` are auto-generated by a scheduled GitHub Actions workflow (`update_pyapi_stubs.yml`) using `pybind11-stubgen`. Do not request manual fixes to stub files.
102103

103104
## Component-Specific Expectations
104105

.github/dockerfiles/docker_tag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pr-34333
1+
pr-34596

.github/dockerfiles/ov_build/fedora_29/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ USER root
77
RUN echo "timeout=60" >> /etc/dnf/dnf.conf && \
88
echo "retries=10" >> /etc/dnf/dnf.conf
99

10+
# Hackity hack: Fedora 29 is out of support for so long now
11+
# that we need to steal `ca-certificates` from Rocky Linux 8 repos
12+
# to trust "storage.openvinotoolkit.org" again
13+
RUN rpm -ihv --force https://download.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os/Packages/c/ca-certificates-2025.2.80_v9.0.304-80.2.el8_10.noarch.rpm
14+
1015
RUN dnf update -y && dnf install -y \
1116
git \
1217
curl \

.github/workflows/dev_cpu_linux_snippets_libxsmm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,13 +225,13 @@ jobs:
225225
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
226226
steps:
227227
- name: Download OpenVINO package
228-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
228+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
229229
with:
230230
name: openvino_package
231231
path: ${{ env.INSTALL_DIR }}
232232

233233
- name: Download OpenVINO tests package
234-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
234+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
235235
with:
236236
name: openvino_tests
237237
path: ${{ env.INSTALL_TEST_DIR }}
@@ -283,13 +283,13 @@ jobs:
283283
PARALLEL_TEST_SCRIPT: ${{ github.workspace }}/install/tests/functional_test_utils/layer_tests_summary/run_parallel.py
284284
steps:
285285
- name: Download OpenVINO package
286-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
286+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
287287
with:
288288
name: openvino_package
289289
path: ${{ env.INSTALL_DIR }}
290290

291291
- name: Download OpenVINO tests package
292-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
292+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
293293
with:
294294
name: openvino_tests
295295
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/fedora_29.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
steps:
133133
- name: Download OpenVINO RPM packages
134-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
134+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
135135
with:
136136
name: openvino_rpm_packages
137137
path: ${{ env.RPM_PACKAGES_DIR }}

.github/workflows/job_build_linux.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ on:
6060
description: 'Target branch for the build; taken from GitHub context by default'
6161
type: string
6262
required: false
63+
use_latest_onednn:
64+
description: 'Whether to use the latest OneDNN'
65+
type: boolean
66+
required: false
67+
default: true
6368

6469
permissions: read-all
6570

@@ -135,7 +140,7 @@ jobs:
135140

136141
# Ticket: 139627
137142
- name: Checkout the latest OneDNN for GPU in nightly
138-
if: ${{ inputs.event-name == 'schedule' && inputs.os == 'ubuntu_22_04' }} # GPU tests are enabled only on U22
143+
if: ${{ inputs.event-name == 'schedule' && inputs.os == 'ubuntu_22_04' && inputs.use_latest_onednn }} # GPU tests are enabled only on U22
139144
working-directory: ${{ env.OPENVINO_REPO }}/src/plugins/intel_gpu/thirdparty/onednn_gpu
140145
run: |
141146
git fetch origin

.github/workflows/job_cpu_functional_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ jobs:
5454
submodules: 'false'
5555

5656
- name: Download OpenVINO artifacts (package)
57-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
57+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
5858
with:
5959
name: openvino_package
6060
path: ${{ env.INSTALL_DIR }}
6161

6262
- name: Download OpenVINO artifacts (tests)
63-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
63+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6464
with:
6565
name: openvino_tests
6666
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_cxx_unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ jobs:
5858
SETUPVARS: ${{ github.workspace }}/install/${{ contains(inputs.runner, 'win') && 'setupvars.ps1' || 'setupvars.sh' }}
5959
steps:
6060
- name: Download OpenVINO artifacts (package)
61-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
61+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6262
with:
6363
name: openvino_package
6464
path: ${{ env.INSTALL_DIR }}
6565

6666
- name: Download OpenVINO artifacts (tests)
67-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
67+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6868
with:
6969
name: openvino_tests
7070
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_debian_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
sed -i -E 's|http://(archive\|security).ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g' /etc/apt/sources.list
4141
4242
- name: Download OpenVINO debian packages
43-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
43+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
4444
with:
4545
name: openvino_debian_packages
4646
path: ${{ env.DEBIAN_PACKAGES_DIR }}

.github/workflows/job_gpu_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ jobs:
5555
NODE_EXTRA_CA_CERTS: /usr/local/share/ca-certificates/IntelProxyRootCA-Base64.crt
5656
steps:
5757
- name: Download OpenVINO artifacts (package)
58-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
58+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
5959
with:
6060
name: openvino_package
6161
path: ${{ env.INSTALL_DIR }}
6262

6363
- name: Download OpenVINO artifacts (tests)
64-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
64+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6565
with:
6666
name: openvino_tests
6767
path: ${{ env.INSTALL_DIR }}

0 commit comments

Comments
 (0)