Skip to content
Snippets Groups Projects
Commit 0df391a8 authored by Grégoire Kubler's avatar Grégoire Kubler Committed by Grégoire Kubler
Browse files

chore : separated each case in list_dependencies for better readability

parent b6bbfe9c
No related branches found
No related tags found
1 merge request!8multiple fixes
......@@ -12,16 +12,37 @@
- set -x
- >
case "$CI_PROJECT_NAME" in
"aidge_backend_cpu" | "aidge_backend_opencv" )
"aidge_backend_cpu" )
DEPS_NAMES=("aidge_core")
;;
# aidge_onnx needs backend_cpu for testing
"aidge_onnx" | "aidge_backend_cuda" | "aidge_learning" | "aidge_quantization" | "aidge_export_cpp" | "aidge_export_arm_cortexm" )
"aidge_backend_cuda" )
DEPS_NAMES=("aidge_core" "aidge_backend_cpu")
;;
"aidge_backend_opencv" )
DEPS_NAMES=("aidge_core")
;;
"aidge_core" )
DEPS_NAMES=()
;;
"aidge_export_arm_cortexm" )
DEPS_NAMES=("aidge_core" "aidge_backend_cpu")
;;
"aidge_export_cpp" )
DEPS_NAMES=("aidge_core" "aidge_backend_cpu")
;;
"aidge_interop_torch" )
DEPS_NAMES=("aidge_core" "aidge_backend_cpu" "aidge_onnx")
;;
"aidge_learning" )
DEPS_NAMES=("aidge_core" "aidge_backend_cpu")
;;
"aidge_onnx" )
# aidge_onnx needs backend_cpu for testing
DEPS_NAMES=("aidge_core" "aidge_backend_cpu")
;;
"aidge_quantization" )
DEPS_NAMES=("aidge_core" "aidge_backend_cpu")
;;
* )
echo "****************************************************************************************************************************"
echo "****************************************************************************************************************************"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment