This repository was archived by the owner on Nov 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# TODO list
22
3- + add Ubuntu version check in tests
4- + check JIT speed
5- + add examples
63+ dldt config keeps downloaded libs -- this is bad
4+ + add examples
5+ + check JIT speed
76+ Auto value for ` -D INF_ENGINE_RELEASE ` : https://github.com/openvinotoolkit/openvino/issues/1435
87+ https://answers.opencv.org/question/236271/what-the-difference-between-cv_version_status-values/
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ red () {
1717
1818ROOT_DIR=$( pwd)
1919
20+ # check Ubuntu version (20.04 build will not work on 18.04)
21+ if test $( lsb_release -rs) ! = 18.04; then
22+ red " \n!!! You are NOT on the Ubuntu 18.04 !!!\n"
23+ fi
24+
2025green " RESET GIT SUBMODULES"
2126# use `git fetch --unshallow && git checkout tags/<tag>` for update
2227git submodule update --init --recursive --depth=1 --jobs=4
@@ -26,8 +31,8 @@ git submodule foreach --recursive git restore .
2631green " CLEAN BUILD DIRS"
2732find build/dldt/ -mindepth 1 -not -name ' dldt_setup.sh' -not -name ' *.patch' -delete
2833find build/opencv/ -mindepth 1 -not -name ' opencv_setup.sh' -delete
29- # find build/ffmpeg/ -mindepth 1 -not -name 'ffmpeg_*.sh' -delete
30- # find build/openblas/ -mindepth 1 -not -name 'openblas_setup.sh' -delete
34+ find build/ffmpeg/ -mindepth 1 -not -name ' ffmpeg_*.sh' -delete
35+ find build/openblas/ -mindepth 1 -not -name ' openblas_setup.sh' -delete
3136
3237green " CLEAN WHEEL DIR"
3338find create_wheel/cv2/ -type f -not -name ' __init__.py' -delete
You can’t perform that action at this time.
0 commit comments