Skip to content

Commit b9332d2

Browse files
Merge branch 'master' into huyuan/rebase_23882
2 parents 1c4f21a + 73e43b5 commit b9332d2

File tree

2,212 files changed

+43441
-34709
lines changed

Some content is hidden

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

2,212 files changed

+43441
-34709
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,5 @@
6767
*.svg filter=lfs diff=lfs merge=lfs -text
6868
.github/scripts/workflow_rerun/tests/data/log_archive_with_error.zip filter=lfs diff=lfs merge=lfs -text
6969
.github/scripts/workflow_rerun/tests/data/log_archive_wo_error.zip filter=lfs diff=lfs merge=lfs -text
70+
*.pdf filter=lfs diff=lfs merge=lfs -text
71+
*.xlsx filter=lfs diff=lfs merge=lfs -text

.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/dockerfiles/docker_tag

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

.github/dockerfiles/ov_build/ubuntu_22_04_x64_cc/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ ENV DEBIAN_FRONTEND="noninteractive" \
1313
TZ="Europe/London"
1414

1515
RUN apt-get update && \
16-
apt-get install software-properties-common && \
16+
apt-get install software-properties-common wget && \
1717
add-apt-repository --yes --no-update ppa:git-core/ppa && \
18+
add-apt-repository --yes --no-update "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" && \
19+
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | tee /etc/apt/trusted.gpg.d/llvm.asc && \
1820
add-apt-repository --yes --no-update ppa:deadsnakes/ppa && \
1921
apt-get update && \
2022
apt-get install \
@@ -38,7 +40,7 @@ RUN apt-get update && \
3840
# Compiler \
3941
clang-15 \
4042
# Static analyzer
41-
clang-tidy-15 \
43+
clang-tidy-18 \
4244
# clang-tidy uses clang-format as a dependency
4345
clang-format-15 \
4446
&& \

.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/scripts/workflow_rerun/errors_to_look_for.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,17 @@
118118
{
119119
"error_text": "file DOWNLOAD cannot compute hash on failed download",
120120
"ticket": 156593
121+
},
122+
{
123+
"error_text": "lost communication with the server",
124+
"ticket": 160816
125+
},
126+
{
127+
"error_text": "the runner has received a shutdown signal",
128+
"ticket": 160818
129+
},
130+
{
131+
"error_text": "Timed out waiting for server startup",
132+
"ticket": 161077
121133
}
122134
]

0 commit comments

Comments
 (0)