forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,679 changed files
with
24,140 additions
and
54,327 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
merge_group: | ||
push: | ||
branches: | ||
- master | ||
# - master | ||
- 'releases/**' | ||
|
||
concurrency: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
merge_group: | ||
push: | ||
branches: | ||
- master | ||
# - master | ||
- 'releases/**' | ||
|
||
concurrency: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
merge_group: | ||
push: | ||
branches: | ||
- master | ||
# - master | ||
- 'releases/**' | ||
|
||
concurrency: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: OVC | ||
on: | ||
merge_group: | ||
push: | ||
paths: | ||
- 'tools/ovc/**' | ||
- '.github/workflows/ovc.yml' | ||
branches: | ||
- 'master' | ||
- 'releases/**' | ||
pull_request: | ||
paths: | ||
- 'tools/ovc/**' | ||
- '.github/workflows/ovc.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
Pylint-UT: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Clone OpenVINO | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Cache pip | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('src/bindings/python/requirements*.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
${{ runner.os }}- | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip setuptools | ||
# For UT | ||
pip install unittest-xml-reporting==3.0.2 | ||
pip install pylint>=2.7.0 | ||
pip install pyenchant>=3.0.0 | ||
pip install -r requirements.txt | ||
working-directory: src/bindings/python/ | ||
|
||
- name: Pylint-OVC | ||
run: pylint -d C,R,W openvino/tools/ovc | ||
working-directory: tools/ovc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Send workflows to OpenTelemetry (BETA) | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- Android ARM64 with vcpkg | ||
- Documentation | ||
- Cleanup PIP caches | ||
- Code snippets | ||
- Code Style | ||
- Code coverage | ||
- Coverity (Ubuntu 20.04, Python 3.11) | ||
- Fedora (RHEL), Python 3.9 | ||
- Linux (Ubuntu 20.04, Python 3.11) | ||
- Linux ARM64 (Ubuntu 20.04, Python 3.11) | ||
- Linux Static CC (Ubuntu 22.04, Python 3.11, Clang) | ||
- Linux RISC-V with Conan (Ubuntu 22.04, Python 3.10) | ||
- macOS (Python 3.11) | ||
- macOS ARM64 (Python 3.11) | ||
- MO | ||
- Python API Checks | ||
- Webassembly | ||
- Windows (VS 2019, Python 3.11) | ||
- Windows Conditional Compilation (VS 2022, Python 3.11) | ||
types: | ||
- completed | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
otel-export-trace: | ||
name: OpenTelemetry Export Trace | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Export Workflow Trace | ||
uses: inception-health/otel-export-trace-action@7eabc7de1f4753f0b45051b44bb0ba46d05a21ef | ||
with: | ||
otlpEndpoint: grpc://api.honeycomb.io:443/ | ||
otlpHeaders: ${{ secrets.OTLP_HEADERS }} | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
runId: ${{ github.event.workflow_run.id }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
merge_group: | ||
push: | ||
branches: | ||
- master | ||
# - master | ||
- 'releases/**' | ||
|
||
concurrency: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.