Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoicon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
w2w
autoicon
Commits
5648bf24
Commit
5648bf24
authored
2 years ago
by
Oriol Tintó
Browse files
Options
Downloads
Patches
Plain Diff
Overcome autosubmit issue with requirement repetition.
parent
b772cf1b
No related branches found
No related tags found
1 merge request
!4
Switching to the advanced configuration method and fixing spack build.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/common/build_python_environment.sh
+8
-1
8 additions, 1 deletion
templates/common/build_python_environment.sh
with
8 additions
and
1 deletion
templates/common/build_python_environment.sh
+
8
−
1
View file @
5648bf24
...
...
@@ -58,7 +58,14 @@ requirements="%python_environment.requirements%"
# Convert list with python format to a bash array
requirements
=(
$(
echo
${
requirements
}
|
sed
"s/'//g"
|
tr
-d
'[],'
)
)
#TODO: Shouldn't be necessary but it is for now to overcome an issue with a repetition of the requirements.
# Use sort and uniq to get the unique elements
unique_requirements
=(
$(
printf
"%s
\n
"
"
${
requirements
[@]
}
"
|
sort
-u
)
)
# Print the unique elements
echo
"
${
unique_requirements
[@]
}
"
# Install requirements.
for
requirement
in
${
requirements
[@]
}
;
do
for
requirement
in
${
unique_
requirements
[@]
}
;
do
python
-m
pip
install
${
requirement
}
done
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