Skip to content

Commit 569c388

Browse files
committed
Adding_workflow_for_triggering_internal_ci
1 parent 8ded1d7 commit 569c388

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name : Trigger Internal ci
2+
3+
on:
4+
push:
5+
branches:
6+
- '**' # Triggers on push to any branch
7+
pull_request:
8+
branches:
9+
- '**' # Triggers on a PR to any branch
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
env:
16+
BUILD_SOURCESDIRECTORY: ${{ github.workspace }}
17+
BUILD_BINARIESDIRECTORY: ${{ github.workspace }}/build
18+
steps:
19+
- uses: actions/checkout@v4 #checkout to your repository
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v4 # Use the setup-python action
23+
with:
24+
python-version: '3.10'
25+
26+
- name: Running Internal CI
27+
run: |
28+
pwd
29+
dir
30+
cd tools/ci_build/github/linux/
31+
dir
32+
sudo ./run_dockerbuild.sh -o ubuntu22.04 -p 3.10 -d openvino -v 2024.3.0 -x "--use_openvino CPU --build_wheel"
33+
shell: bash

0 commit comments

Comments
 (0)