-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (69 loc) · 2.11 KB
/
component-ci.yml
File metadata and controls
71 lines (69 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: component-ci
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
component:
strategy:
fail-fast: false
matrix:
include:
- name: linux
runs_on: ubuntu-latest
openvino_ubuntu_packages: >-
build-essential
ninja-build
ccache
pkgconf
git
libtbb-dev
libpugixml-dev
patchelf
libsnappy-dev
python3-pip
python3-venv
python3-setuptools
libpython3-dev
pybind11-dev
libffi-dev
openvino_cmake_args: >-
-DENABLE_PYTHON=OFF
-DENABLE_JS=OFF
-DENABLE_SAMPLES=OFF
-DENABLE_TESTS=OFF
-DENABLE_OV_ONNX_FRONTEND=OFF
-DENABLE_OV_PADDLE_FRONTEND=OFF
-DENABLE_OV_TF_FRONTEND=OFF
-DENABLE_OV_TF_LITE_FRONTEND=OFF
- name: macos
runs_on: macos-14
openvino_ubuntu_packages: ""
openvino_cmake_args: >-
-DENABLE_INTEL_CPU=OFF
-DENABLE_INTEL_GPU=OFF
-DENABLE_INTEL_NPU=OFF
-DENABLE_PYTHON=OFF
-DENABLE_JS=OFF
-DENABLE_SAMPLES=OFF
-DENABLE_TESTS=OFF
-DENABLE_OV_ONNX_FRONTEND=OFF
-DENABLE_OV_PADDLE_FRONTEND=OFF
-DENABLE_OV_TF_FRONTEND=OFF
-DENABLE_OV_TF_LITE_FRONTEND=OFF
uses: ovx-labs/ci/.github/workflows/reusable-component-ci.yml@main
with:
component: java-api
runs-on: ${{ matrix.runs_on }}
openvino-repo: ovx-labs/openvino
openvino-ref: master
openvino-submodules: recursive
openvino-ubuntu-packages: ${{ matrix.openvino_ubuntu_packages }}
openvino-cmake-args: ${{ matrix.openvino_cmake_args }}
setup-java: true
setup-gradle: true
validation-command: python3 ci/validate_repo.py
build-command: python3 ci/build_standalone.py
test-command: python3 ci/validate_artifacts.py