09a3d3ab17
Copilot Setup Steps / copilot-setup-steps (push) Failing after 2s
Python check requirements.txt / check-requirements (push) Has been cancelled
Python Type-Check / python type-check (push) Has been cancelled
Update Operations Documentation / update-ops-docs (push) Has been cancelled
Check Pre-Tokenizer Hashes / pre-tokenizer-hashes (push) Has been cancelled
25 lines
821 B
YAML
25 lines
821 B
YAML
name: "Windows - Setup OpenVINO Toolkit"
|
|
description: "Setup OpenVINO Toolkit for Windows"
|
|
inputs:
|
|
path:
|
|
description: "Installation path"
|
|
required: true
|
|
version_major:
|
|
description: "OpenVINO major version (e.g., 2026.2)"
|
|
required: true
|
|
version_full:
|
|
description: "OpenVINO full version"
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Download and extract OpenVINO Runtime
|
|
shell: powershell
|
|
run: |
|
|
$url = "https://storage.openvinotoolkit.org/repositories/openvino/packages/${{ inputs.version_major }}/windows/openvino_toolkit_windows_${{ inputs.version_full }}_x86_64.zip"
|
|
$out = "openvino.zip"
|
|
Invoke-WebRequest -Uri $url -OutFile $out
|
|
Expand-Archive -Path $out -DestinationPath ${{ inputs.path }} -Force
|
|
Remove-Item $out
|