Changeset 5043
- Timestamp:
- Jul 10, 2024, 6:21:57 PM (4 months ago)
- Location:
- BOL/script_install_amaury
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
BOL/script_install_amaury/install_lmdz.sh
r5031 r5043 523 523 install_arch "XIOS" 524 524 525 echo "Starting XIOS compilation" 526 if ! ./make_xios --arch "$arch" --job 8 &> "$xioslog"; then 525 echo "$jobcmd ./make_xios --job $make_j --arch $arch" > compile.sh 526 chmod +x compile.sh 527 echo "$(date) Compiling XIOS using $(\cat compile.sh) (log in $xioslog)" 528 if ! ./compile.sh &> "$xioslog"; then 527 529 echo "STOP: XIOS compilation failed, exiting"; exit 1 528 530 fi -
BOL/script_install_amaury/test_compils.sh
r5037 r5043 19 19 function do_one_test { 20 20 # Perform one test, if the log file doesn't already exist 21 cd "$local" 21 22 22 23 # Create test args 23 local args="$base_args -rad $rad -parallel $parallel -netcdf 0 -veget $veget $xios $lmdzrev $cosp "24 local args="$base_args -rad $rad -parallel $parallel -netcdf 0 -veget $veget $xios $lmdzrev $cosp $debug" 24 25 # trim 25 26 args=$(echo "$args" | xargs) … … 46 47 47 48 function run_all_tests { 48 cd "$local"49 49 for parallel in "none" "mpi_omp"; do 50 50 for rad in "oldrad" "rrtm" "ecrad"; do … … 54 54 for lmdzrev in ""; do 55 55 for cosp in "" "-cosp v1" "-cosp v2"; do 56 for debug in "" "-debug"; do 56 57 do_one_test 58 done 57 59 done 58 60 done
Note: See TracChangeset
for help on using the changeset viewer.