summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-01-02 03:37:20 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-02 03:37:20 +0100
commit04fbdc87d7d96773efa109918550204f6f74fbc7 (patch)
treeae8d7f7f35c694c7cbbe4a88bbbbaa911dcc95eb /bin/reproducible_common.sh
parent49ea7bfae1d48bd0db63d7e2a5bc63443f566631 (diff)
downloadjenkins.debian.net-04fbdc87d7d96773efa109918550204f6f74fbc7.tar.xz
reproducible: add graph for required packages only
Diffstat (limited to 'bin/reproducible_common.sh')
-rwxr-xr-xbin/reproducible_common.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 21dc6a76..9e2b0ebb 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -104,6 +104,17 @@ elif [ ! -f ${PACKAGES_DB} ] ; then
(datum TEXT NOT NULL,
known_issues INTEGER,
PRIMARY KEY (datum))'
+ sqlite3 ${PACKAGES_DB} '
+ CREATE TABLE stats_meta_pkg_state
+ (datum TEXT NOT NULL,
+ suite TEXT NOT NULL,
+ meta_pkg TEXT NOT NULL,
+ untested INTEGER,
+ reproducible INTEGER,
+ unreproducible INTEGER,
+ FTBFS INTEGER,
+ other INTEGER,
+ PRIMARY KEY (datum, suite, meta_pkg))'
# 60 seconds timeout when trying to get a lock
cat > $INIT <<-EOF
.timeout 60000