From dbc54641a783b8c10b2c1094c90495e8d4e23d98 Mon Sep 17 00:00:00 2001 From: Vlad Bogolin Date: Tue, 26 Mar 2024 14:18:27 +0200 Subject: [PATCH] Create HTML log file for fulltest builders This is needed to show links to the logs and the MTR step is looking for the file --- master-docker-nonstandard-2/master.cfg | 13 +++++++++++++ master-docker-nonstandard/master.cfg | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/master-docker-nonstandard-2/master.cfg b/master-docker-nonstandard-2/master.cfg index 77a6de32..4b161910 100644 --- a/master-docker-nonstandard-2/master.cfg +++ b/master-docker-nonstandard-2/master.cfg @@ -860,6 +860,19 @@ f_full_test.addStep( ) ) ) +f_full_test.addStep( + steps.ShellCommand( + name="create html log file", + command=[ + "bash", + "-c", + util.Interpolate( + getHTMLLogString(), + jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"), + ), + ], + ) +) # build steps f_full_test.addStep( steps.Compile( diff --git a/master-docker-nonstandard/master.cfg b/master-docker-nonstandard/master.cfg index f5905736..4c43cc81 100644 --- a/master-docker-nonstandard/master.cfg +++ b/master-docker-nonstandard/master.cfg @@ -1113,6 +1113,19 @@ f_full_test.addStep( ) ) ) +f_full_test.addStep( + steps.ShellCommand( + name="create html log file", + command=[ + "bash", + "-c", + util.Interpolate( + getHTMLLogString(), + jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"), + ), + ], + ) +) # build steps f_full_test.addStep( steps.Compile(