diff options
Diffstat (limited to 'ops/gerrit-tvl/static/tvl.js')
-rw-r--r-- | ops/gerrit-tvl/static/tvl.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ops/gerrit-tvl/static/tvl.js b/ops/gerrit-tvl/static/tvl.js index 7019624b59d4..b1ce3eda3abb 100644 --- a/ops/gerrit-tvl/static/tvl.js +++ b/ops/gerrit-tvl/static/tvl.js @@ -111,6 +111,11 @@ const tvlChecksProvider = { const build = respJSON[i]; for (let job of build.jobs) { + // Skip non-command jobs (e.g. waiting/grouping jobs) + if (job.type !== 'script') { + continue; + } + // TODO(lukegb): add the ability to retry these const checkRun = { patchset: parseInt(build.env.GERRIT_PATCHSET, 10), |