mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
yocto_console_view: Skip indexing job on console view
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
11a1e0a899
commit
573e590f9d
|
@ -228,7 +228,7 @@ class Console {
|
||||||
const builders_with_builds = [];
|
const builders_with_builds = [];
|
||||||
let builderids_with_builds = "";
|
let builderids_with_builds = "";
|
||||||
for (let builder of Array.from(all_builders)) {
|
for (let builder of Array.from(all_builders)) {
|
||||||
if (builder.hasBuild) {
|
if (builder.hasBuild && builder.name != 'indexing') {
|
||||||
builders_with_builds.push(builder);
|
builders_with_builds.push(builder);
|
||||||
builderids_with_builds += `.${builder.builderid}`;
|
builderids_with_builds += `.${builder.builderid}`;
|
||||||
}
|
}
|
||||||
|
@ -373,7 +373,9 @@ class Console {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
change.buildersById[build.builderid].builds.push(build);
|
if (build.builderid in change.buildersById) {
|
||||||
|
change.buildersById[build.builderid].builds.push(build);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
makeFakeChange(revision, when_timestamp, comments) {
|
makeFakeChange(revision, when_timestamp, comments) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user