Skip to content

Commit a2362fe

Browse files
Merge remote-tracking branch 'upstream/master' into CVS-169982-weights-serialization
2 parents 63117b1 + bac064b commit a2362fe

File tree

131 files changed

+4989
-1056
lines changed

Some content is hidden

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

131 files changed

+4989
-1056
lines changed

.github/scripts/workflow_rerun/errors_to_look_for.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,5 +146,9 @@
146146
{
147147
"error_text": "connect: connection refused",
148148
"ticket": 171446
149+
},
150+
{
151+
"error_text": "Connection reset by peer - SSL_connect",
152+
"ticket": 173970
149153
}
150154
]

.github/scripts/workflow_rerun/tests/integration_test.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import unittest
99
from pathlib import Path
10+
from datetime import datetime
1011
from github import Github, Auth
1112
import os
1213
import tempfile
@@ -32,6 +33,14 @@ def setUp(self) -> None:
3233

3334
# Even if we use "failure" for status we cannot guarantee logs containing any of the known error
3435
# So these tests use the logs of the most recent successfull pipeline
36+
# Its "created_at" time should be within 60 days - the log retention window
37+
self.wf_run = None
38+
for run in self.gh_repo.get_workflow_runs(status='success'):
39+
if (datetime.now(run.created_at.tzinfo) - run.created_at).days < 45:
40+
self.wf_run = run
41+
break
42+
if not self.wf_run:
43+
raise RuntimeError('No suitable workflow run found for testing')
3544
self.wf_run = self.gh_repo.get_workflow_runs(status='success')[0]
3645
print(f'Workflow run for testing: {self.wf_run}', flush=True)
3746

.github/scripts/workflow_rerun/tests/log_collector_test.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import unittest
1010
import tempfile
1111
from pathlib import Path
12+
from datetime import datetime
1213

1314
from github import Github, Auth
1415

@@ -26,7 +27,14 @@ def setUp(self) -> None:
2627
self.github = Github(auth=Auth.Token(token=os.environ.get('GITHUB_TOKEN')))
2728
self.gh_repo = self.github.get_repo(full_name_or_id='openvinotoolkit/openvino')
2829
# Use the logs of the most recent successfull pipeline
29-
self.wf_run = self.gh_repo.get_workflow_runs(status='success')[0]
30+
# Its "created_at" time should be within 60 days - the log retention window
31+
self.wf_run = None
32+
for run in self.gh_repo.get_workflow_runs(status='success'):
33+
if (datetime.now(run.created_at.tzinfo) - run.created_at).days < 45:
34+
self.wf_run = run
35+
break
36+
if not self.wf_run:
37+
raise RuntimeError('No suitable workflow run found for testing')
3038
print(f'Workflow run for testing: {self.wf_run}', flush=True)
3139

3240
def test_log_collection(self) -> None:

.github/workflows/job_build_windows.yml

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

8888
- name: Setup NodeJS
8989
if: ${{ fromJSON(inputs.affected-components).JS_API }}
90-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
90+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
9191
with:
9292
node-version: ${{ env.NODEJS_VERSION }}
9393

.github/workflows/job_openvino_js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
working-directory: ${{ env.OPENVINO_JS_DIR }}
6464

6565
- name: Setup Node ${{ env.NODE_VERSION }}
66-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
66+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
6767
with:
6868
node-version: ${{ env.NODE_VERSION }}
6969

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
146146
- name: Setup NodeJS
147147
if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
148-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
148+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
149149
with:
150150
node-version: ${{ env.NODEJS_VERSION }}
151151

.github/workflows/mac_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
145145
- name: Setup NodeJS
146146
if: fromJSON(needs.smart_ci.outputs.affected_components).JS_API
147-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
147+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
148148
with:
149149
node-version: ${{ env.NODEJS_VERSION }}
150150

.github/workflows/manylinux_2_28.yml

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

133133
- name: Setup Node ${{ env.NODE_VERSION }}
134-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
134+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
135135
with:
136136
node-version: ${{ env.NODE_VERSION }}
137137

.github/workflows/windows_vs2022_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ jobs:
209209
working-directory: ${{ env.OPENVINO_JS_LIBS_DIR }}
210210

211211
- name: Setup Node ${{ env.NODE_VERSION }}
212-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
212+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
213213
with:
214214
node-version: ${{ env.NODE_VERSION }}
215215

docs/articles_en/about-openvino/release-notes-openvino/system-requirements.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ CPU
2020
.. tab-item:: Supported Hardware
2121

2222
* Intel® Core™ Ultra Series 1 and Series 2
23-
* Intel® Xeon® 6 processor (preview)
23+
* Intel® Xeon® 6 processor
2424
* Intel Atom® Processor X Series
2525
* Intel Atom® processor with Intel® SSE4.2 support
2626
* Intel® Pentium® processor N4200/5, N3350/5, N3450/5 with Intel® HD Graphics
@@ -32,7 +32,7 @@ CPU
3232

3333
* Windows 11, 64-bit
3434
* Windows 10, 64-bit
35-
* Ubuntu 24.04 long-term support (LTS), 64-bit (Kernel 6.8+) (preview support)
35+
* Ubuntu 24.04 long-term support (LTS), 64-bit (Kernel 6.8+)
3636
* Ubuntu 22.04 long-term support (LTS), 64-bit (Kernel 5.15+)
3737
* Ubuntu 20.04 long-term support (LTS), 64-bit (Kernel 5.15+)
3838
* macOS 12.6 and above, 64-bit and ARM64

0 commit comments

Comments
 (0)