| reading hydra's api.md, it doesn't look like there's a way to filter an eval's builds.
what i'm trying to achieve is to get a list of builds from the last trunk eval, that are failed (not timed out or skipped due to dep fail) on linux.
right now, like a savage, i'm doing this with chrome's console, injecting artisan jquery selectors and removing things i don't want to see from the DOM.
e.g.
$("div#tabs-still-fail tbody tt").toArray().forEach(function(e) {
if (e.innerText.endsWith("-darwin")) {
e.parentNode.parentNode.remove();
}
})
$("div#tabs-still-fail tbody img").toArray().forEach(function(e) {
if (e.alt != "Failed") e.parentNode.parentNode.remove()
})
is there a more elegant way to do this?
|