changeset 43:e663de12c34d

branch fixes?
author John W. Eaton <jwe@octave.org>
date Fri, 27 Aug 2021 14:43:18 -0400
parents 34a08c41b29b
children a472775c2952
files master.cfg
diffstat 1 files changed, 10 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/master.cfg	Fri Aug 27 14:26:16 2021 -0400
+++ b/master.cfg	Fri Aug 27 14:43:18 2021 -0400
@@ -281,9 +281,11 @@
 
 def mk_octave_hg_update_step (repo, branch):
   return Mercurial (repourl = repo,
-                    defaultBranch = branch, branchType = "inrepo",
-                    workdir = "src", mode = "full", method = "fresh",
-                    haltOnFailure = True)
+                    defaultBranch = branch,
+                    branchType = "inrepo", mode = "full", method = "fresh",
+                    alwaysUseLatest = True,
+                    haltOnFailure = True,
+                    workdir = "src")
 
 def mk_octave_bootstrap_step (nice = 0):
   boot_cmd = build_cmd_list ("./bootstrap", nice = nice)
@@ -629,9 +631,11 @@
 
 def mk_mxe_octave_hg_update_step (repo, mxe_branch):
   return Mercurial (repourl = repo,
-                    defaultBranch = mxe_branch, branchType = "inrepo",
-                    workdir = "src", mode = "full", method = "fresh",
-                    haltOnFailure = True)
+                    defaultBranch = mxe_branch,
+                    branchType = "inrepo", mode = "full", method = "fresh",
+                    alwaysUseLatest = True,
+                    haltOnFailure = True,
+                    workdir = "src")
 
 
 def mk_mxe_octave_bootstrap_step (nice = 0):