<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: times new roman,new york,times,serif; font-size: 12pt; color: #000000'>yes, sorry about it<br>We have only a simple build in serial after every commit;<br>parallel builds without zoltan all failed last night :(<br><br>I will enable more parallel builds in jenkins-ci, after every commit. (Tomorrow, because I cannot edit jenkins over vpn )<br><br>the buildbot watcher for git/bitbucket is not working right, I don't know why, so I had to use jenkins.<br>Where are the petsc builds that depend on moab? I need to subscribe to that list, at least.<br><br>Iulian<br><br><hr id="zwchr"><blockquote style="border-left:2px solid #1010FF;margin-left:5px;padding-left:5px;color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;">Thanks for the fix Iulian. Just a simple preprocessor check for zoltan<br>configuration got left out crashing all non-zoltan builds.<br><br>Can we please initiate buildbot checks after every commit? Is there a<br>way to even do this or do we have to wait till end of the day for<br>confirmation ? These could be as simple as running "git pull; make<br>check" on the different builds. MOAB master needs to be stable since<br>PETSc master relies on it in certain daily configurations.<br><br>Vijay<br><br>On Sun, Oct 20, 2013 at 9:34 AM, <commits-noreply@bitbucket.org> wrote:<br>> 1 new commit in MOAB:<br>><br>> https://bitbucket.org/fathomteam/moab/commits/8dbdd2de6148/<br>> Changeset: 8dbdd2de6148<br>> Branch: master<br>> User: iulian07<br>> Date: 2013-10-20 16:32:07<br>> Summary: fix parallel builds configured without mbzoltan<br>><br>> if build in parallel, without zoltan, the guards will allow only trivial<br>> partition for MPAS meshes<br>><br>> Affected #: 1 file<br>><br>> diff --git a/src/io/NCHelperMPAS.cpp b/src/io/NCHelperMPAS.cpp<br>> index 35fdb2b..497c7f1 100644<br>> --- a/src/io/NCHelperMPAS.cpp<br>> +++ b/src/io/NCHelperMPAS.cpp<br>> @@ -302,6 +302,7 @@ ErrorCode NCHelperMPAS::create_mesh(Range& faces)<br>><br>><br>> #ifdef USE_MPI<br>> +#ifdef HAVE_ZOLTAN<br>> int& partMethod = _readNC->partMethod;<br>> if (partMethod==ScdParData::RCBZOLTAN && procs >=2) // it does not make sense to partition<br>> // if the number of processors is less than 2; trivial partition is good enough<br>> @@ -331,12 +332,16 @@ ErrorCode NCHelperMPAS::create_mesh(Range& faces)<br>> nLocalCells = localGidCells.size();<br>> }<br>> else {<br>> -#endif /* use mpi */<br>> +#endif /* this is end for HAVE_ZOLTAN */<br>> +#endif /* if use mpi */<br>> + /* without zoltan, only trivial partition is possible */<br>> start_cell_idx++; // 0 based -> 1 based<br>> localGidCells.insert(start_cell_idx, start_cell_idx + nLocalCells - 1);<br>> #ifdef USE_MPI<br>> +#ifdef HAVE_ZOLTAN<br>> }<br>> -#endif<br>> +#endif /* end for HAVE_ZOLTAN */<br>> +#endif /* end for USE_MPI */<br>> // Read number of edges on each local cell, to calculate actual maxEdgesPerCell<br>> int nEdgesOnCellVarId;<br>> int success = NCFUNC(inq_varid)(_fileId, "nEdgesOnCell", &nEdgesOnCellVarId);<br>><br>> Repository URL: https://bitbucket.org/fathomteam/moab/<br>><br>> --<br>><br>> This is a commit notification from bitbucket.org. You are receiving<br>> this because you have the service enabled, addressing the recipient of<br>> this email.<br></blockquote><br></div></body></html>