Changeset 4917
- Timestamp:
- Apr 23, 2024, 11:02:07 AM (7 months ago)
- Location:
- BOL/script_install_amaury
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
BOL/script_install_amaury/install_lmdz.sh
r4914 r4917 320 320 # check compiler 321 321 compiler=$(< "$fcm_path" grep "%COMPILER" | sed -e "s/%COMPILER\s*//") 322 323 # load env 324 local env_path=${fcm_path/.fcm/.env} 325 # shellcheck disable=SC1090 326 if [[ -f $env_path ]]; then source "$env_path"; fi 322 327 } 323 328 -
BOL/script_install_amaury/test_compils.sh
r4914 r4917 41 41 for xios in "" "-xios"; do 42 42 if [[ $xios = "-xios" && $parallel = "none" ]]; then continue; fi 43 for lmdzrev in "" "-r 4894"; do 43 for lmdzrev in "" "-r 4894"; do # TODO when base lmdz becomes >=4894, change condition for lmdzrev="" 44 if [[ (! $veget = "none") && ($parallel = "none") && ($(echo "$lmdzrev" | cut -c 4-) -lt 4894) ]]; then continue; fi 44 45 do_one_test 45 46 done … … 52 53 function display_results { 53 54 cd "test_logs" 54 echo "Success=o, Failure=XXX "55 echo "Success=o, Failure=XXX, non-breaking error=/!\\" 55 56 echo "INSTALL BENCH NAME" 56 57 for fname in *; do 57 58 if [[ $(tail -n 1 -- "$fname") = " Everything is cool" ]]; then 58 echo " o o $fname" 59 if grep -q "Error" < "$fname"; then 60 echo " o /!\\ $fname" 61 else 62 echo " o o $fname" 63 fi 59 64 else 60 65 if grep -q "EXECUTION DU BENCH" < "$fname"; then
Note: See TracChangeset
for help on using the changeset viewer.