Skip to content

Commit

Permalink
Create HTML log file for fulltest builders
Browse files Browse the repository at this point in the history
This is needed to show links to the logs and the MTR step is looking for the file
  • Loading branch information
vladbogo committed Mar 26, 2024
1 parent 9864614 commit 4675ca1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions master-docker-nonstandard-2/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
13 changes: 13 additions & 0 deletions master-docker-nonstandard/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 4675ca1

Please sign in to comment.