Changeset 22893


Ignore:
Timestamp:
07/02/18 10:52:09 (7 years ago)
Author:
Eric.Larour
Message:

CHG: accepting packages from trunk.

Location:
issm/branches/trunk-larour-NatGeoScience2016/packagers
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-larour-NatGeoScience2016/packagers/macosx-dakota/package.sh

    r21759 r22893  
    1111cd $ISSM_DIR/test/NightlyRun
    1212rm matlab.log
    13 /Applications/MATLAB_R2015b.app/bin/matlab -nojvm -nosplash -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log
     13/Applications/MATLAB_R2015b.app/bin/matlab -nodisplay -nojvm -nosplash -nodesktop -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log
    1414
    1515if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then
  • issm/branches/trunk-larour-NatGeoScience2016/packagers/macosx/package.sh

    r21759 r22893  
    77cp ../externalpackages/mpich/install/bin/mpiexec .
    88cp ../externalpackages/mpich/install/bin/hydra_pmi_proxy .
     9echo "move gmsh to bin"
     10if [ -f ../externalpackages/gmsh/install/gmsh ]; then
     11        cp ../externalpackages/gmsh/install/gmsh .
     12else
     13        echo "gmsh not found"
     14fi
    915
    1016#Check that test101 runs
    1117cd $ISSM_DIR/test/NightlyRun
    1218rm matlab.log
    13 $MATLAB_DIR/bin/matlab -nojvm -nosplash -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log
     19/Applications/MATLAB_R2015b.app/bin/matlab -nodisplay -nojvm -nosplash -nodesktop -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log
    1420
    1521if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then
     
    2026fi
    2127
    22 #Package using the Package Maker from OSX, driven by command line.
    2328tarball_name='issm-mac-static_build.tar.gz'
    2429
     
    3136rm -rf trunk
    3237mkdir trunk
    33 #Need script to download data
    3438cp -rf bin lib test examples scripts trunk/
    3539tar -czf $tarball_name trunk
  • issm/branches/trunk-larour-NatGeoScience2016/packagers/ubuntu/package.sh

    r20610 r22893  
    55cat generic_static.m | sed -e "s/generic_static/generic/g" > generic.m
    66echo "move mpiexec to bin"
     7cp ../externalpackages/mpich/install/bin/mpiexec .
     8cp ../externalpackages/mpich/install/bin/hydra_pmi_proxy .
     9echo "move gmsh to bin"
     10if [ -f ../externalpackages/gmsh/install/gmsh ]; then
     11        cp ../externalpackages/gmsh/install/gmsh .
     12else
     13        echo "gmsh not found"
     14fi
    715
    816#Check that test101 runs
    917cd $ISSM_DIR/test/NightlyRun
    1018rm matlab.log
    11 $MATLAB_DIR/bin/matlab -nojvm -nosplash -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log
     19/usr/local/MATLAB/R2015a/bin/matlab -nojvm -nosplash -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log
    1220
    1321if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then
     
    2836rm -rf trunk
    2937mkdir trunk
    30 cp -rf bin lib test examples trunk/
     38cp -rf bin lib test examples scripts trunk/
    3139tar -czf $tarball_name trunk
    3240ls -lah $tarball_name
Note: See TracChangeset for help on using the changeset viewer.