Skip to content
Snippets Groups Projects
Commit f77313df authored by Damian Alvarez's avatar Damian Alvarez
Browse files

Fix CI for packages that need to be installed in a particular group

parent bdd79c20
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,14 @@ check_style: ...@@ -44,6 +44,14 @@ check_style:
- echo "List of files to be checked $eb_list" - echo "List of files to be checked $eb_list"
- for i in $eb_list; do - for i in $eb_list; do
- echo "Checking $(basename $i) ..." - echo "Checking $(basename $i) ..."
- if [[ $(basename $i) == *AMBER* ]]; then
- sg amber eb --check-style --check-contrib $i || faulty="$faulty $i"
- elif [[ $(basename $i) == *CPMD* ]]; then
- sg cpmd eb --check-style --check-contrib $i || faulty="$faulty $i"
- elif [[ $(basename $i) == *NAMD* ]]; then
- sg namd eb --check-style --check-contrib $i || faulty="$faulty $i"
- else
- eb --check-style --check-contrib $i || faulty="$faulty $i" - eb --check-style --check-contrib $i || faulty="$faulty $i"
- fi
- done - done
- if [ -n "$faulty" ]; then echo "Faulty EasyConfigs... $faulty"; exit 1; fi - if [ -n "$faulty" ]; then echo "Faulty EasyConfigs... $faulty"; exit 1; fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment