Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DRAFT] Try private actions repo #28761

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions .github/workflows/job_python_api_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ jobs:
.github/actions/install_ov_wheels/action.yml
sparse-checkout-cone-mode: false
path: 'action_root'

- name: Checkout private action repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: openvinotoolkit/actions_test
ref: master
token: ${{ secrets.GITHUB_TOKEN }}
path: private-actions

- name: Setup Python ${{ inputs.python-version }}
uses: ./action_root/.github/actions/setup_python
Expand All @@ -86,15 +94,14 @@ jobs:
#
# Tests
#
- name: Install OpenVINO Python wheels
uses: ./action_root/.github/actions/install_ov_wheels
with:
wheels-dir-path: ${{ env.INSTALL_WHEELS_DIR }}
wheels-to-install: 'openvino'

- name: Install Python API tests dependencies
run: python3 -m pip install -r ${INSTALL_TEST_DIR}/tests/bindings/python/requirements_test.txt

- name: Install GenAI Wheels
uses: ./private-actions/.github/actions/install_wheels
with:
packages: "openvino"
requirements_files: ${{ env.INSTALL_TEST_DIR }}/tests/bindings/python/requirements_test.txt
local_wheel_dir: ${{ env.INSTALL_WHEELS_DIR }}

#
# Tests
#
Expand Down
Loading