[94462] contrib/buildbot/master.cfg

jmr at macports.org jmr at macports.org
Tue Jun 19 16:19:56 PDT 2012


Revision: 94462
          https://trac.macports.org/changeset/94462
Author:   jmr at macports.org
Date:     2012-06-19 16:19:56 -0700 (Tue, 19 Jun 2012)
Log Message:
-----------
buildbot: don't skip changes that affect files/ only, since we don't know whether the last build of the port failed

Modified Paths:
--------------
    contrib/buildbot/master.cfg

Modified: contrib/buildbot/master.cfg
===================================================================
--- contrib/buildbot/master.cfg	2012-06-19 22:56:20 UTC (rev 94461)
+++ contrib/buildbot/master.cfg	2012-06-19 23:19:56 UTC (rev 94462)
@@ -91,7 +91,9 @@
     for f in change.files:
         if "_resources" in f:
             continue
-        if "dports" in f and "Portfile" in f:
+        # should actually skip changes to files/ only, but only if we know the
+        # last build of the port succeeded
+        if "dports" in f and ("Portfile" in f or "files" in f):
             return True
     return False
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20120619/448b0d2b/attachment.html>


More information about the macports-changes mailing list