We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ded1d7 commit a63c653Copy full SHA for a63c653
.github/workflows/internal_ci_ovep.yml
@@ -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
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
28
+ ./run_dockerbuild.sh -i onnxruntimebuildcache -o ubuntu22.04 -p 3.10 -d openvino -v 2024.3.0 -x "--use_openvino CPU --build_wheel"
29
+ shell: bash
0 commit comments