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(