Skip to content

Commit d831efe

Browse files
authored
Upgrade OpenVINO to 2023.1.0 (#3863)
1 parent 0d99811 commit d831efe

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/cpp_gapi-demos.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313
- name: Download OpenVINO
1414
run: |
1515
mkdir ov
16-
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/master/2023.1.0.dev20230811/l_openvino_toolkit_ubuntu20_2023.1.0.dev20230811_x86_64.tgz | tar --directory ov --strip-components 1 -xz
16+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.1/linux/l_openvino_toolkit_ubuntu20_2023.1.0.12185.47b736f63ed_x86_64.tgz | tar --directory ov --strip-components 1 -xz
1717
sudo ov/install_dependencies/install_openvino_dependencies.sh
1818
sudo apt install libgtk2.0-dev pkg-config # smart_classroom_demo_gapi's OpenCV error asks to install them
1919
- uses: hendrikmuhs/[email protected]
2020
with:
21-
key: ubuntu20_2023.1.0.dev20230811 # This action prepends and appends its strings to the key
21+
key: ubuntu20_2023.1.0.12185.47b736f63ed # This action prepends and appends its strings to the key
2222
restore: ${{ github.event_name == 'pull_request'}}
2323
- if: ${{ github.event_name == 'pull_request'}}
2424
uses: actions/cache/restore@v3
2525
id: cache
2626
with:
2727
path: ${{ github.workspace }}/cache
2828
key: unused
29-
restore-keys: ubuntu20_2023.1.0.dev20230811-
29+
restore-keys: ubuntu20_2023.1.0.12185.47b736f63ed-
3030
- if: ${{ !steps.cache.outputs.cache-hit }}
3131
uses: actions/checkout@v3
3232
with:
@@ -50,7 +50,7 @@ jobs:
5050
- name: Install OMZ tools
5151
run: |
5252
python -m pip install --cache-dir cache/pip/ --upgrade pip
53-
python -m pip install --cache-dir cache/pip/ --extra-index-url https://download.pytorch.org/whl/cpu openvino==2023.1.0.dev20230811 openvino-dev[onnx,pytorch,tensorflow2]==2023.1.0.dev20230811 tools/model_tools[pytorch,tensorflow2]
53+
python -m pip install --cache-dir cache/pip/ --extra-index-url https://download.pytorch.org/whl/cpu openvino==2023.1.0 openvino-dev[onnx,pytorch,tensorflow2]==2023.1.0 tools/model_tools[pytorch,tensorflow2]
5454
# Reinstall OMZ tools that could come from openvino-dev because pip doesn't promise the order of installation
5555
python -m pip install --no-cache-dir --no-deps tools/model_tools
5656
# Make sure OpenVINO is used from C++ package, not from PyPI
@@ -62,4 +62,4 @@ jobs:
6262
- uses: actions/cache/save@v3
6363
with:
6464
path: ${{ github.workspace }}/cache
65-
key: ubuntu20_2023.1.0.dev20230811-${{ github.event.repository.updated_at }}
65+
key: ubuntu20_2023.1.0.12185.47b736f63ed-${{ github.event.repository.updated_at }}

ci/dependencies.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
openvino_linux: 'https://storage.openvinotoolkit.org/repositories/openvino/packages/master/2023.1.0.dev20230811/l_openvino_toolkit_ubuntu20_2023.1.0.dev20230811_x86_64.tgz'
2-
openvino_windows: 'https://storage.openvinotoolkit.org/repositories/openvino/packages/master/2023.1.0.dev20230811/w_openvino_toolkit_windows_2023.1.0.dev20230811_x86_64.zip'
3-
wheel_linux: '2023.1.0.dev20230811'
4-
wheel_windows: '2023.1.0.dev20230811'
1+
openvino_linux: 'https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.1/linux/l_openvino_toolkit_ubuntu20_2023.1.0.12185.47b736f63ed_x86_64.tgz'
2+
openvino_windows: 'https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.1/windows/w_openvino_toolkit_windows_2023.1.0.12185.47b736f63ed_x86_64.zip'
3+
wheel_linux: '2023.1.0'
4+
wheel_windows: '2023.1.0'

0 commit comments

Comments
 (0)