diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2022-05-03 14:38:27 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2022-05-03 14:52:52 +0200 |
| commit | dc9e52595336dbe32f9a20f5da9f09cb8172cd21 (patch) | |
| tree | 93903d740ae3dcc88a1ebb8fd84d1ac9561cd863 | |
| parent | 13451882351564c08d2621be48f3a5d8454c52bc (diff) | |
dashboard/app: show kernel config for the current manager build
It's useful to be able to look at the current config for a particular manager.
Currently it's doable but somewhat ugly (find a recently reported crash and
look at its config).
Show kernel config for each manager directly.
| -rw-r--r-- | dashboard/app/templates.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html index 19123b72e..f0165503d 100644 --- a/dashboard/app/templates.html +++ b/dashboard/app/templates.html @@ -181,7 +181,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <th>Coverage {{template "info_link" "https://github.com/google/syzkaller/blob/master/docs/coverage.md"}}</th> <th>Crashes</th> <th>Execs</th> - <th colspan="3">Kernel build</th> + <th colspan="4">Kernel build</th> <th colspan="3">syzkaller build</th> </tr> <tr> @@ -193,6 +193,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <th></th> <th></th> <th>Commit</th> + <th>Config</th> <th>Freshness</th> <th>Status</th> <th>Commit</th> @@ -224,6 +225,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{end}} {{with $build := $mgr.CurrentBuild}} <td class="stat" title="[{{$build.KernelAlias}}] {{$build.KernelCommitTitle}}">{{link $build.KernelCommitLink (formatTagHash $build.KernelCommit)}}</td> + <td class="stat">{{link $build.KernelConfigLink ".config"}}</td> <td class="stat" title="{{formatTime $build.KernelCommitDate}}" {{if $mgr.FailedBuildBugLink}}class="bad"{{end}}>{{formatLateness $mgr.Now $build.KernelCommitDate}}</td> <td class="stat">{{if $mgr.FailedBuildBugLink}}<a href="{{$mgr.FailedBuildBugLink}}" class="bad">failing</a>{{end}}</td> <td class="stat">{{link $build.SyzkallerCommitLink (formatShortHash $build.SyzkallerCommit)}}</td> @@ -236,6 +238,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <td></td> <td></td> <td></td> + <td></td> {{end}} </tr> {{end}} |
