Changeset 21972


Ignore:
Timestamp:
08/17/17 15:43:08 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixed MATLAB path

Location:
issm/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/jenkins/jenkins.sh

    r21341 r21972  
    3232#source configuration script
    3333source $1;
     34
     35#For binaries, we need to know what MATLAB to use
     36export MATLAB_PATH
    3437#}}}
    3538#Get Operating system (OS) name{{{
  • issm/trunk/packagers/macosx-dakota/package.sh

    r21362 r21972  
    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$MATLAB_PATH/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
    1414
    1515if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then
  • issm/trunk/packagers/macosx/package.sh

    r21593 r21972  
    1111cd $ISSM_DIR/test/NightlyRun
    1212rm 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
     13$MATLAB_PATH/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
    1414
    1515if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then
  • issm/trunk/packagers/ubuntu/package.sh

    r21341 r21972  
    99cd $ISSM_DIR/test/NightlyRun
    1010rm 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
     11$MATLAB_PATH/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
    1212
    1313if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then
Note: See TracChangeset for help on using the changeset viewer.