Changeset 735


Ignore:
Timestamp:
06/03/09 07:18:11 (15 years ago)
Author:
Mathieu Morlighem
Message:

nightly run package by package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/utils/Nightly/nightlyrun.m

    r733 r735  
    2828
    2929%Go through list of decks, and run the deck runme.m files package by package.
    30 for i=2:length(list)-1,
    31         eval(['cd ' list{i}]);
    32         if nargin==1
    33                 runme(varargin{1});
    34         else
    35                 runme({'macayeal'});
    36                 runme({'ice'});
    37                 runme({'cielo_serial'});
    38                 runme({'cielo_parallel'});
     30packages={'macayeal','ice','cielo_serial','cielo_parallel'};
     31for i=1:length(packages),
     32        for j=2:length(list)-1,
     33                eval(['cd ' list{j}]);
     34                if nargin==1
     35                        runme(varargin{1});
     36                else
     37                        runme({packages{i}});
     38                end
     39                cd ..
    3940        end
    40         cd ..
    4141end
    4242
Note: See TracChangeset for help on using the changeset viewer.