Skip to content

Commit 16eb6d4

Browse files
committed
Adding_workflow_for_triggering_internal_ci
1 parent 8ded1d7 commit 16eb6d4

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
steps:
16+
- uses: actions/checkout@v4 #checkout to your repository
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v4 # Use the setup-python action
20+
with:
21+
python-version: '3.10'
22+
23+
- name: Running Internal CI
24+
run: |
25+
dir
26+
cd tools/ci_build/github/linux/
27+
dir
28+
./run_dockerbuild.sh -o ubuntu22.04 -p 3.10 -d openvino -v 2024.3.0 -x "--use_openvino CPU --build_wheel"
29+
shell: bash

0 commit comments

Comments
 (0)