public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Add poke_check_step that logs poke.log
@ 2023-05-15 10:55 Mark Wielaard
  0 siblings, 0 replies; only message in thread
From: Mark Wielaard @ 2023-05-15 10:55 UTC (permalink / raw)
  To: buildbot; +Cc: Jose E . Marchesi, Mark Wielaard

---
 builder/master.cfg | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/builder/master.cfg b/builder/master.cfg
index 98f0e01..ac241d1 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -4404,12 +4404,18 @@ poke_git_step = steps.Git(
         getDescription={'tags':True, 'always':True},        
         haltOnFailure=True)
 
+poke_check_step = steps.Test(
+        command=addOutputSync.withArgs(["make", "check",
+            util.Interpolate('-j%(prop:ncpus)s')]),
+        name="make check", haltOnFailure=False, flunkOnFailure=True,
+        logfiles={"poke.log": "testsuite/poke.log"})
+
 gnupoke_factory = util.BuildFactory()
 gnupoke_factory.addStep(poke_git_step)
 gnupoke_factory.addStep(bootstrap_step)
 gnupoke_factory.addStep(configure_step)
 gnupoke_factory.addStep(make_step)
-gnupoke_factory.addStep(make_check_step)
+gnupoke_factory.addStep(poke_check_step)
 gnupoke_factory.addStep(steps.Test(command=["make", "syntax-check"],
                                    name="make syntax-check",
                                    haltOnFailure=False, flunkOnFailure=True))
-- 
2.40.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-05-15 10:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-15 10:55 [PATCH] Add poke_check_step that logs poke.log Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).