Skip to content

Commit 5a71a80

Browse files
authored
Merge branch 'openvinotoolkit:develop' into an/3d_weights
2 parents fbfbb27 + f09af53 commit 5a71a80

File tree

131 files changed

+2633
-1181
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

+2633
-1181
lines changed

.github/workflows/api_changes_check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
issues: write
2727
steps:
2828
- name: Download built HTML doc as artifact from previous step
29-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
29+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
3030
with:
3131
name: html_doc_artifact
3232
- run: |
@@ -63,7 +63,7 @@ jobs:
6363
echo '{"pr_number": "${{ github.event.pull_request.number }}", "action": "none"}' > api_status.json
6464
6565
- name: Upload artifact
66-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4.6.2
66+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
6767
with:
6868
name: api_status
6969
path: api_status.json

.github/workflows/build_and_publish_doc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3030

3131
- name: Download HTML doc build artifact
32-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
32+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
3333
with:
3434
name: html_doc_artifact
3535
- name: Extract artifact
@@ -39,7 +39,7 @@ jobs:
3939
rm artifact.tar
4040
4141
- name: Download schema doc build artifact
42-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
42+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
4343
with:
4444
name: schema_doc_artifact
4545
path: html_build/html
@@ -51,7 +51,7 @@ jobs:
5151
rm artifact.tar
5252
5353
- name: Publish built docs on Github Pages branch ${{ env.GH_PAGES_BRANCH }}
54-
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
54+
uses: JamesIves/github-pages-deploy-action@4a3abc783e1a24aeb44c16e869ad83caf6b4cc23 # v4.7.4
5555
with:
5656
folder: html_build/html
5757
token: ${{ secrets.PUSH_TO_GH_PAGES_BRANCH }}

.github/workflows/build_html_doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Archive built HTMLs
3030
shell: bash
3131
run: tar -czf artifact.tar html_build/html
32-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4.6.2
32+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
3333
with:
3434
name: html_doc_artifact
3535
path: artifact.tar

.github/workflows/build_schema_page.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: tar -czf artifact.tar schema
3333

3434
- name: Upload result as artifact
35-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4.6.2
35+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
3636
with:
3737
name: schema_doc_artifact
3838
path: artifact.tar

.github/workflows/conformance_weight_compression.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ on:
1414

1515
jobs:
1616
examples-cpu:
17-
name: Weight compression [${{ matrix.group }}/4]
17+
name: Weight compression [${{ matrix.group }}/6]
1818
runs-on: ubuntu-latest-16-cores
1919
timeout-minutes: 60
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
group: [1, 2, 3, 4]
23+
group: [1, 2, 3, 4, 5, 6]
2424
defaults:
2525
run:
2626
shell: bash
@@ -50,7 +50,7 @@ jobs:
5050
--junit-xml=pytest-results.xml \
5151
--durations-path=tests/post_training/data/wc_test_durations.json \
5252
--splitting-algorithm=least_duration \
53-
--splits 4 \
53+
--splits 6 \
5454
--group ${{ matrix.group }} \
5555
${{ github.event.inputs.pytest_args || '' }}
5656
ret=$?
@@ -63,7 +63,7 @@ jobs:
6363
run: column -s, -t < tmp/results.csv || echo "no file"
6464
- name: Upload artifact
6565
if: ${{ !cancelled() }}
66-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4.6.2
66+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
6767
with:
6868
name: wc_results_${{ matrix.group }}
6969
path: tmp/results.csv

.github/workflows/examples.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ concurrency:
2626

2727
jobs:
2828
examples-cpu:
29-
name: Test examples CPU [${{ matrix.group }}/4]
29+
name: Test examples CPU [${{ matrix.group }}/6]
3030
runs-on: ubuntu-latest-16-cores
3131
timeout-minutes: 80
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
group: [1, 2, 3, 4]
35+
group: [1, 2, 3, 4, 5, 6]
3636
defaults:
3737
run:
3838
shell: bash
@@ -64,7 +64,7 @@ jobs:
6464
--junit-xml=pytest-results.xml \
6565
--durations-path=tests/cross_fw/examples/.test_durations \
6666
--splitting-algorithm=least_duration \
67-
--splits 4 \
67+
--splits 6 \
6868
--group ${{ matrix.group }} \
6969
${{ github.event.inputs.pytest_args || '' }}
7070
ret=$?
@@ -149,16 +149,18 @@ jobs:
149149
150150
examples-win-cpu:
151151
timeout-minutes: 80
152-
name: Test examples CPU Windows [${{ matrix.group }}/4]
152+
name: Test examples CPU Windows [${{ matrix.group }}/6]
153153
runs-on: windows-2025-16-core
154154
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.skip_windows == 'false' }}
155155
strategy:
156156
fail-fast: false
157157
matrix:
158-
group: [1, 2, 3, 4]
158+
group: [1, 2, 3, 4, 5, 6]
159159
defaults:
160160
run:
161161
shell: bash
162+
env:
163+
PYTHONIOENCODING: utf-8
162164
steps:
163165
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
164166
with:
@@ -189,7 +191,7 @@ jobs:
189191
--junit-xml=pytest-results.xml \
190192
--durations-path=tests/cross_fw/examples/.test_durations \
191193
--splitting-algorithm=least_duration \
192-
--splits 4 \
194+
--splits 6 \
193195
--group ${{ matrix.group }} \
194196
${{ github.event.inputs.pytest_args || '' }}
195197
ret=$?

.github/workflows/sdl.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
with:
4040
lfs: true
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
42+
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
4343
with:
4444
languages: python
4545
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
46+
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
4747
with:
4848
category: "/language:python"
4949

@@ -63,7 +63,7 @@ jobs:
6363
mv "report.pdf" "codeql_nncf_report_${DATE}_${REF_NAME//\//-}_${{ github.sha }}.pdf"
6464
- name: Upload CodeQL Artifacts
6565
if: ${{ github.event_name != 'pull_request' }}
66-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4.6.2
66+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
6767
with:
6868
name: codeql-scan-results
6969
path: "./codeql*.pdf"
@@ -98,7 +98,7 @@ jobs:
9898
mv "trivy_report.html" "trivy_report_${DATE}_${REF_NAME//\//-}_${{ github.sha }}.html"
9999
- name: Upload Scan Results
100100
if: ${{ !cancelled() }}
101-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4.6.2
101+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
102102
with:
103103
name: trivy-report
104104
path: "./trivy_report*.html"
@@ -152,7 +152,7 @@ jobs:
152152
mv "clamav_report.txt" "clamav_report_${DATE}_${REF_NAME//\//-}_${{ github.sha }}.txt"
153153
- name: Upload Scan Results
154154
if: ${{ !cancelled() }}
155-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4.6.2
155+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0
156156
with:
157157
name: clamav-report
158158
path: "./clamav_report*.txt"

0 commit comments

Comments
 (0)