You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/07/10 01:43:23 UTC

cordova-medic git commit: Making nightly builds always run. Making change-based builds use the changes they got instead of the branch.

Repository: cordova-medic
Updated Branches:
  refs/heads/master 0b9bb65bc -> 7b75716f5


Making nightly builds always run. Making change-based builds use the changes they got instead of the branch.


Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/7b75716f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/7b75716f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/7b75716f

Branch: refs/heads/master
Commit: 7b75716f5b478d6d41571703dcfab10277ba83de
Parents: 0b9bb65
Author: Dmitry Blotsky <dm...@gmail.com>
Authored: Thu Jul 9 16:43:15 2015 -0700
Committer: Dmitry Blotsky <dm...@gmail.com>
Committed: Thu Jul 9 16:43:15 2015 -0700

----------------------------------------------------------------------
 buildbot-conf/cordova.conf | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/7b75716f/buildbot-conf/cordova.conf
----------------------------------------------------------------------
diff --git a/buildbot-conf/cordova.conf b/buildbot-conf/cordova.conf
index bd1ea6e..4d017af 100644
--- a/buildbot-conf/cordova.conf
+++ b/buildbot-conf/cordova.conf
@@ -446,7 +446,7 @@ c['schedulers'].extend([
         codebases     = CORDOVA_CODEBASES,
         branch        = None, # None means default branch
         hour          = 0,
-        onlyIfChanged = True,
+        onlyIfChanged = False,
         builderNames  = [
             'cordova-android-osx',
             'cordova-android-win',
@@ -460,9 +460,16 @@ c['schedulers'].extend([
         ],
     ),
 
-    AnyBranchScheduler(
-        name          = 'cordova-e2e-commit',
-        reason        = 'commit',
+    SingleBranchScheduler(
+        name   = 'cordova-e2e-commit',
+        reason = 'commit',
+
+        # NOTE:
+        #      this means that the scheduler will use source stamps
+        #      that it saw when the build was triggered; otherwise, builds that
+        #      build "master" might build different code if master changes
+        #      between two builders from a set of builds that should be identical
+        createAbsoluteSourceStamps = True,
 
         # NOTE:
         #      in addition to 'change_filter', the 'codebases' argument ALSO functions
@@ -470,7 +477,7 @@ c['schedulers'].extend([
         change_filter = cordova_e2e_run_triggers,
         codebases     = CORDOVA_CODEBASES,
 
-        builderNames  = [
+        builderNames = [
             'cordova-android-osx',
             'cordova-android-win',
             'cordova-ios',


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org