File tree 3 files changed +18
-6
lines changed
3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -264,6 +264,15 @@ jobs:
264
264
}
265
265
Compress-Archive @compress
266
266
267
+ # Setup Python 3.11 as the default one
268
+ - name : Setup Python ${{ env.PYTHON_VERSION }}
269
+ uses : ./openvino/.github/actions/setup_python
270
+ with :
271
+ version : ${{ env.PYTHON_VERSION }}
272
+ pip-cache-path : ${{ env.PIP_CACHE_PATH }}
273
+ should-setup-pip-paths : ' true'
274
+ self-hosted-runner : ' true'
275
+
267
276
- name : CMake configure, build and install - OpenVINO JS API
268
277
if : ${{ fromJSON(inputs.affected-components).JS_API }}
269
278
run : |
@@ -285,6 +294,13 @@ jobs:
285
294
}
286
295
Compress-Archive @compress
287
296
297
+ - name : Cmake & Build - OpenVINO Contrib
298
+ run : |
299
+ cmake -DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" -S ${{ env.OPENVINO_REPO }} -B ${{ env.BUILD_DIR }} `
300
+ -DOPENVINO_EXTRA_MODULES="${{ env.OPENVINO_CONTRIB_REPO }}/modules/custom_operations;${{ env.OPENVINO_CONTRIB_REPO }}/modules/java_api" `
301
+ -DENABLE_WHEEL=OFF
302
+ cmake --build ${{ env.BUILD_DIR }} --parallel $ENV:NUMBER_OF_PROCESSORS
303
+
288
304
#
289
305
# Upload build artifacts and logs
290
306
#
Original file line number Diff line number Diff line change 65
65
-DENABLE_TESTS=ON `
66
66
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON `
67
67
-DENABLE_STRICT_DEPENDENCIES=OFF `
68
- -DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON `
69
- -DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" `
70
- -DOPENVINO_EXTRA_MODULES="${env:OPENVINO_CONTRIB_REPO }}/modules/custom_operations;${env:OPENVINO_CONTRIB_REPO}/modules/java_api"
68
+ -DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON
71
69
72
70
CXX_Unit_Tests :
73
71
name : C++ unit tests
Original file line number Diff line number Diff line change 69
69
-DENABLE_TESTS=ON `
70
70
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON `
71
71
-DENABLE_STRICT_DEPENDENCIES=OFF `
72
- -DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON `
73
- -DCUSTOM_OPERATIONS="calculate_grid;complex_mul;fft;grid_sample;sparse_conv;sparse_conv_transpose" `
74
- -DOPENVINO_EXTRA_MODULES="${env:OPENVINO_CONTRIB_REPO}/modules/custom_operations;${env:OPENVINO_CONTRIB_REPO}/modules/java_api"
72
+ -DCMAKE_DISABLE_FIND_PACKAGE_PkgConfig=ON
75
73
76
74
Samples :
77
75
needs : [ Build, Smart_CI ]
You can’t perform that action at this time.
0 commit comments