Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gitlab_shared_files
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
aidge
gitlab_shared_files
Commits
1fbc04e5
Commit
1fbc04e5
authored
11 months ago
by
Thibault Allenet
Browse files
Options
Downloads
Patches
Plain Diff
fix the dependencies
parent
1d7194db
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab/ci/release/pip.gitlab-ci.yml
+21
-2
21 additions, 2 deletions
.gitlab/ci/release/pip.gitlab-ci.yml
with
21 additions
and
2 deletions
.gitlab/ci/release/pip.gitlab-ci.yml
+
21
−
2
View file @
1fbc04e5
...
...
@@ -17,9 +17,28 @@ release:pip:ubuntu:
-
python --version
-
python -m pip wheel -w wheelhouse .
-
echo "Tests"
-
echo $DEPS_NAMES
-
>
for DEP_NAME in $DEPS_NAMES; do
if [[ "$CI_PROJECT_NAME" == "aidge_backend_cpu" ]]; then
export DEPS_NAMES_2=("aidge_core")
elif [[ "$CI_PROJECT_NAME" == "aidge_backend_opencv" ]]; then
export DEPS_NAMES_2=("aidge_core")
elif [[ "$CI_PROJECT_NAME" == "aidge_backend_cuda" ]]; then
export DEPS_NAMES_2=("aidge_core" "aidge_backend_cpu")
elif [[ "$CI_PROJECT_NAME" == "aidge_learning" ]]; then
export DEPS_NAMES_2=("aidge_core" "aidge_backend_cpu")
elif [[ "$CI_PROJECT_NAME" == "aidge_export_cpp" ]]; then
export DEPS_NAMES_2=("aidge_core" "aidge_backend_cpu")
elif [[ "$CI_PROJECT_NAME" == "aidge_onnx" ]]; then
export DEPS_NAMES_2=("aidge_core" "aidge_backend_cpu")
elif [[ "$CI_PROJECT_NAME" == "aidge_quantization" ]]; then
export DEPS_NAMES_2=("aidge_core" "aidge_backend_cpu")
else
echo "Warning: The project $CI_PROJECT_NAME has no dependency."
export DEPS_NAMES_2=()
fi
-
echo "export DEPS_NAMES_2 = ${DEPS_NAMES[@]}"
-
>
for DEP_NAME in $DEPS_NAMES_2; do
echo "current dep $DEP_NAME"
cd $DEP_NAME
pip install . -v
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment