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 4e801a4
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/internal_ci_ovep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name : Trigger Internal ci

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
env:
BUILD_SOURCESDIRECTORY: ${{ github.workspace }}
BUILD_BINARIESDIRECTORY: ${{ github.workspace }}/build
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: Create build directory
run: |
mkdir -p ${{ env.BUILD_BINARIESDIRECTORY }}
chmod -R 777 ${{ env.BUILD_BINARIESDIRECTORY }}
- name: Running Internal CI
run: |
pwd
dir
cd tools/ci_build/github/linux/
dir
sudo ./run_dockerbuild.sh -o ubuntu22.04 -p 3.10 -d openvino -v 2024.3.0 -x "--use_openvino CPU --build_wheel"
shell: bash

0 comments on commit 4e801a4

Please sign in to comment.