----- Forwarded message from julianf...@apache.org ----- > Date: Mon, 13 Aug 2012 19:12:04 -0000 > From: julianf...@apache.org > To: infrastructure-...@apache.org > Subject: svn commit: r828822 - > /infrastructure/buildbot/aegis/buildmaster/master1/projects/subversion.conf > Message-Id: <20120813191204.5de9e2388...@eris.apache.org> > > Author: julianfoad > Date: Mon Aug 13 19:12:03 2012 > New Revision: 828822 > > Log: > Adjust what triggers a Subversion build. > > * master1/projects/subversion.conf > (SubversionExcludes): Remove 'packages' because some builds depend on the > package scripts, and remove 'tools' because some tools are included by > default in a standard build. > > Modified: > infrastructure/buildbot/aegis/buildmaster/master1/projects/subversion.conf > > Modified: > infrastructure/buildbot/aegis/buildmaster/master1/projects/subversion.conf > ============================================================================== > --- > infrastructure/buildbot/aegis/buildmaster/master1/projects/subversion.conf > (original) > +++ > infrastructure/buildbot/aegis/buildmaster/master1/projects/subversion.conf > Mon Aug 13 19:12:03 2012 > @@ -3,8 +3,8 @@ > # List the paths that are not interesting enough to trigger a new build. > import re > SubversionExcludes = masterExcludes + ["COMMITTERS", "STATUS", "CHANGES", > "README", "INSTALL", "COPYING", "HACKING", "TRANSLATING", > - "BUGS", "www", "notes", "packages", "subversion/LICENSE", > "subversion/po", "doc", "contrib", > - "tools", "dist.sh"] > + "BUGS", "www", "notes", "subversion/LICENSE", "subversion/po", > "doc", "contrib", > + "dist.sh"] >
The semantics of this list are as follows: if a revision does not touch a path that doesn't match any of the above patterns, then buildbot skips building it. > def isSubversionImportant(change): > if not SubversionExcludes: > ----- End forwarded message -----