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 893ca1c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/internal_ci_ovep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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: 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 893ca1c

Please sign in to comment.