Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
TolyaTalamanov committed Dec 17, 2024
2 parents 40497d9 + 973b26b commit 8038422
Show file tree
Hide file tree
Showing 147 changed files with 41,936 additions and 1,928 deletions.
4 changes: 4 additions & 0 deletions .github/actions/install_wheel/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
lib/
dist/
node_modules/
coverage/
1 change: 1 addition & 0 deletions .github/actions/install_wheel/.node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.6.0
3 changes: 3 additions & 0 deletions .github/actions/install_wheel/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/
node_modules/
coverage/
16 changes: 16 additions & 0 deletions .github/actions/install_wheel/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "avoid",
"proseWrap": "always",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf"
}
22 changes: 22 additions & 0 deletions .github/actions/install_wheel/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Install Python Packages with Local Wheels and Extras'
description:
'Installs specified Python packages with support for local wheels and optional
extras.'
author: 'OpenVINO Developers'
inputs:
packages:
description:
"Semicolon-separated list of packages to install, e.g.,
'openvino;openvino_tokenizers[extra1,extra2]'"
required: true
requirements_files:
description:
"Semicolon-separated list of requirements.txt to install, e.g.,
'requirements.txt;requirements-dev.txt'"
required: false
local_wheel_dir:
description: 'Path to the directory containing local wheel files'
required: true
runs:
using: 'node20'
main: 'dist/index.js'
Loading

0 comments on commit 8038422

Please sign in to comment.