File tree 1 file changed +33
-0
lines changed
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments