summaryrefslogtreecommitdiff
path: root/buildmaster
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-06-18 13:39:26 +0200
committerErich Eckner <git@eckner.net>2019-06-18 13:39:26 +0200
commitee8d483a95dd089442f5d151c52ae708b3a2c606 (patch)
tree068aef84c0296cf46f86390910a8754b69e6f0c4 /buildmaster
parent296cf837d26a6a138c28902a8813cf73b2545a97 (diff)
downloadwebsite-ee8d483a95dd089442f5d151c52ae708b3a2c606.tar.xz
buildmaster/build-list.php: show column of current blocks
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`," .