summaryrefslogtreecommitdiff
path: root/buildmaster
diff options
context:
space:
mode:
Diffstat (limited to 'buildmaster')
-rw-r--r--buildmaster/build-list.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/buildmaster/build-list.php b/buildmaster/build-list.php
index 0e178d1..6d42b69 100644
--- a/buildmaster/build-list.php
+++ b/buildmaster/build-list.php
@@ -111,6 +111,13 @@ $columns = array(
"sort" => "deps",
"title" => "number of dependencies on the build-list"
),
+ "blocks" => array(
+ "label" => "Blocks",
+ "mysql_name" => "dependending_blocked",
+ "mysql_query" => "IFNULL(`ba_q`.`currently_blocking`,0)",
+ "sort" => "blocks",
+ "title" => "number of dependending build orders on the build-list"
+ ),
"arch" => array(
"label" => "Arch",
"mysql_name" => "arch",
@@ -265,6 +272,7 @@ $result = mysql_run_query(
"`build_assignments`.`is_blocked`," .
"`build_assignments`.`is_broken`," .
"`build_assignments`.`priority`," .
+ "`build_assignments`.`currently_blocking`," .
"`package_sources`.`pkgbase`," .
"`package_sources`.`git_revision`," .
"`package_sources`.`mod_git_revision`," .