Skip to content

Commit

Permalink
Adding_workflow_for_triggering_internal_ci
Browse files Browse the repository at this point in the history
  • Loading branch information
TejalKhade28 committed Sep 18, 2024
1 parent 8ded1d7 commit adb2dba
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/internal_ci_ovep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name : Build_OVEP

on:
push:
branches:
- '**' # Triggers on push to any branch
pull_request:
branches:
- '**' # Triggers on a PR to any branch

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 #checkout to your repository

- name: Set up Python
uses: actions/setup-python@v4 # Use the setup-python action
with:
python-version: '3.10'

- name: Download OepnVINO
run: |
curl -L -o openvino.zip https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.3/windows/w_openvino_toolkit_windows_2024.3.0.16041.1e3b88e4e3f_x86_64.zip
Expand-Archive -Path openvino.zip -DestinationPath openvino_folder
- name: Running Internal CI
run: |
cd tools/ci_build/github/linux/
./run_dockerbuild.sh -o ubuntu22.04 -p 3.10 -d openvino -v 2024.3.0 -x "--use_openvino CPU --build_wheel"
shell: cmd

0 comments on commit adb2dba

Please sign in to comment.