Skip to content

Commit 8afa0ac

Browse files
authored
Merge branch 'master' into an/fix-android-jit-eltwise
2 parents fbcf589 + bee8307 commit 8afa0ac

File tree

60 files changed

+888
-117
lines changed

Some content is hidden

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

60 files changed

+888
-117
lines changed

.github/workflows/android.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
type: string
88
required: false
99
pull_request:
10+
types:
11+
- opened
12+
- synchronize
13+
- reopened
14+
- ready_for_review
1015
merge_group:
1116
push:
1217
branches:
@@ -23,6 +28,7 @@ permissions: read-all
2328
jobs:
2429
Smart_CI:
2530
runs-on: ubuntu-latest
31+
if: github.event.pull_request.draft == false || github.run_attempt > 1
2632
outputs:
2733
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
2834
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

.github/workflows/build_doc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Documentation
22
on:
33
pull_request:
4+
types:
5+
- opened
6+
- synchronize
7+
- reopened
8+
- ready_for_review
49
merge_group:
510

611
concurrency:
@@ -12,6 +17,7 @@ permissions: read-all
1217
jobs:
1318
Smart_CI:
1419
runs-on: ubuntu-latest
20+
if: github.event.pull_request.draft == false || github.run_attempt > 1
1521
outputs:
1622
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
1723
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

.github/workflows/clang_tidy.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Clang-tidy static analysis (Ubuntu 24.04, Python 3.12, Clang-18, Clang-tid
22
on:
33
workflow_dispatch:
44
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
- reopened
9+
- ready_for_review
510
merge_group:
611
push:
712
branches:
@@ -21,6 +26,7 @@ env:
2126
jobs:
2227
Smart_CI:
2328
runs-on: ubuntu-latest
29+
if: github.event.pull_request.draft == false || github.run_attempt > 1
2430
outputs:
2531
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
2632
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

.github/workflows/code_style.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
name: Code Style
2-
on: [pull_request, merge_group]
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- synchronize
7+
- reopened
8+
- ready_for_review
9+
merge_group:
310

411
concurrency:
512
group: ${{ github.workflow }}-${{ github.ref }}
@@ -10,6 +17,7 @@ permissions: read-all
1017
jobs:
1118
Smart_CI:
1219
runs-on: ubuntu-latest
20+
if: github.event.pull_request.draft == false || github.run_attempt > 1
1321
outputs:
1422
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
1523
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

.github/workflows/coverity.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ on:
1515
schedule:
1616
# run daily at 00:00
1717
- cron: '0 0 * * *'
18+
# pull_request:
19+
# types:
20+
# - opened
21+
# - synchronize
22+
# - reopened
23+
# - ready_for_review
1824

1925
concurrency:
2026
# github.ref is not unique in post-commit
@@ -32,6 +38,7 @@ jobs:
3238

3339
Smart_CI:
3440
runs-on: ubuntu-latest
41+
if: github.event.pull_request.draft == false || github.run_attempt > 1
3542
outputs:
3643
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
3744
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

.github/workflows/debian_10_arm.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
type: string
88
required: false
99
pull_request:
10+
types:
11+
- opened
12+
- synchronize
13+
- reopened
14+
- ready_for_review
1015
merge_group:
1116
push:
1217
branches:
@@ -23,6 +28,7 @@ permissions: read-all
2328
jobs:
2429
Smart_CI:
2530
runs-on: ubuntu-latest
31+
if: github.event.pull_request.draft == false || github.run_attempt > 1
2632
outputs:
2733
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
2834
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

.github/workflows/dev_cpu_linux_snippets_libxsmm.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Linux CPU Plugin Snippets with LIBXSMM (Ubuntu 22.04)
22
on:
33
workflow_dispatch:
44
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
- reopened
9+
- ready_for_review
510
paths:
611
- '.github/workflows/dev_cpu_linux_snippets_libxsmm.yml'
712
- 'src/common/snippets/**'
@@ -26,6 +31,7 @@ env:
2631
jobs:
2732
Smart_CI:
2833
runs-on: ubuntu-latest
34+
if: github.event.pull_request.draft == false || github.run_attempt > 1
2935
outputs:
3036
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
3137
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

.github/workflows/fedora_29.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
type: string
88
required: false
99
pull_request:
10+
types:
11+
- opened
12+
- synchronize
13+
- reopened
14+
- ready_for_review
1015
merge_group:
1116
push:
1217
branches:
@@ -23,6 +28,7 @@ permissions: read-all
2328
jobs:
2429
Smart_CI:
2530
runs-on: ubuntu-latest
31+
if: github.event.pull_request.draft == false || github.run_attempt > 1
2632
outputs:
2733
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
2834
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

.github/workflows/job_cpu_functional_tests.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ jobs:
5252
.github/actions
5353
sparse-checkout-cone-mode: false
5454
submodules: 'false'
55-
55+
5656
- name: Download OpenVINO artifacts (package)
5757
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
5858
with:
5959
name: openvino_package
6060
path: ${{ env.INSTALL_DIR }}
61-
61+
6262
- name: Download OpenVINO artifacts (tests)
6363
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
6464
with:
@@ -68,7 +68,7 @@ jobs:
6868
- name: Install OpenVINO dependencies (mac)
6969
if: runner.os == 'macOS'
7070
run: brew install pigz
71-
71+
7272
- name: Extract OpenVINO packages
7373
run: |
7474
pigz -dc openvino_package.tar.gz | tar -xf - -v
@@ -85,13 +85,13 @@ jobs:
8585
- name: Install python dependencies for run_parallel.py
8686
run: python3 -m pip install -r ${INSTALL_TEST_DIR}/functional_test_utils/layer_tests_summary/requirements.txt
8787

88-
- name: Restore tests execution time
89-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
90-
with:
91-
path: ${{ env.PARALLEL_TEST_CACHE }}
92-
key: ${{ runner.os }}-${{ runner.arch }}-tests-functional-cpu-stamp-${{ github.sha }}
93-
restore-keys: |
94-
${{ runner.os }}-${{ runner.arch }}-tests-functional-cpu-stamp
88+
# - name: Restore tests execution time
89+
# uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
90+
# with:
91+
# path: ${{ env.PARALLEL_TEST_CACHE }}
92+
# key: ${{ runner.os }}-${{ runner.arch }}-tests-functional-cpu-stamp-${{ github.sha }}
93+
# restore-keys: |
94+
# ${{ runner.os }}-${{ runner.arch }}-tests-functional-cpu-stamp
9595

9696
- name: Intel CPU plugin func tests (parallel)
9797
run: |

.github/workflows/linux_arm64.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
type: string
88
required: false
99
pull_request:
10+
types:
11+
- opened
12+
- synchronize
13+
- reopened
14+
- ready_for_review
1015
merge_group:
1116
push:
1217
branches:
@@ -27,6 +32,7 @@ env:
2732
jobs:
2833
Smart_CI:
2934
runs-on: ubuntu-latest
35+
if: github.event.pull_request.draft == false || github.run_attempt > 1
3036
outputs:
3137
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
3238
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"

0 commit comments

Comments
 (0)