Changeset 506 for configs


Ignore:
Timestamp:
12/08/16 12:25:16 (7 years ago)
Author:
dubos
Message:

configs/testing : towards first working version

Location:
configs/testing/bash
Files:
1 added
1 edited
6 moved

Legend:

Unmodified
Added
Removed
  • configs/testing/bash/build.sh

    r504 r506  
    2323    cd $ROOT 
    2424    # compile all variants in parallel 
    25     build_dynamico serial -parallel none & 
    26     build_dynamico mpi -parallel mpi -with_xios & 
    27     build_dynamico mpi_omp -parallel mpi_omp -with_xios & 
     25    build_dynamico serial -parallel none $FULL & 
     26    build_dynamico mpi -parallel mpi -with_xios $FULL & 
     27    build_dynamico mpi_omp -parallel mpi_omp -with_xios $FULL & 
    2828    wait 
    2929    # check success 
     
    3333} 
    3434 
     35FULL=$1 
    3536source current_args 
    3637rm -rf bin logs 
    3738mkdir bin logs 
    38 ( main ) || ( echo ; echo "***************** Build FAILED ******************" ; exit 1) 
     39( main ) || ( echo ; echo "***************** Build FAILED ******************" ) 
    3940 
    40 echo "***************** Build : SUCCESS ******************" 
     41echo 
    4142echo "You may now run create_runs.sh" 
  • configs/testing/bash/daily.sh

    r503 r506  
    3030if [[ $XIOS_CUR != $XIOS_HEAD ]]; then 
    3131    echo "XIOS needs an update from r$XIOS_CUR to r$XIOS_HEAD" 
     32    FULL="-full" # trigger full recompilation of DYNAMICO 
    3233    UPDATE=y 
    3334fi 
     
    3738    update XIOS || exit 1 
    3839    update DYNAMICO || exit 1 
    39     ./build.sh || exit 1 
    40     ./create_runs.sh || exit 1 
    41     ./submit.sh || exit 1 
     40    bash/build.sh $FULL || exit 1 
     41    bash/create_runs.sh || exit 1 
     42    bash/submit.sh || exit 1 
    4243fi 
Note: See TracChangeset for help on using the changeset viewer.