summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-03-03 11:05:10 +0100
committerMattia Rizzolo <mattia@mapreri.org>2015-03-03 11:05:10 +0100
commit623f060957af62e176f5a66aa66d8f0d519c7372 (patch)
tree0f226796251cdea964333aefa0338324c5202962 /bin/reproducible_build.sh
parent4173a44619a5a854f79287fb4a6ffa8ef9211e9a (diff)
downloadjenkins.debian.net-623f060957af62e176f5a66aa66d8f0d519c7372.tar.xz
Revert "Revert "reproducible: start to populate the stats_builds table, to gather stats about all the builds"", let's actually fix this
This reverts commit 5e5b7d8e65a2c71e6b925b53cc179cd3e8ba2478.
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 7dfe1258..b99c7ec6 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -92,6 +92,7 @@ call_debbindiff() {
echo "${SRCPACKAGE} built successfully and reproducibly." | tee -a ${RBUILDLOG}
calculate_build_duration
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO results (package_id, version, status, build_date, build_duration) VALUES ('${SRCPKGID}', '${VERSION}', 'reproducible', '$DATE', '$DURATION')"
+ sqlite3 -init $INIT ${PACKAGES_DB} "INSERT INTO stats_builds (name, version, suite, architecture, status, build_date, build_duration) VALUES ('${SRCPACKAGE}', '${VERSION}', '${SUITE}', '${ARCH}', 'reproducible', '${DATE}', '${DURATION}')"
update_db_and_html
else
echo | tee -a ${RBUILDLOG}
@@ -116,6 +117,7 @@ call_debbindiff() {
fi
calculate_build_duration
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO results (package_id, version, status, build_date, build_duration) VALUES ('${SRCPKGID}', '${VERSION}', 'unreproducible', '$DATE', '$DURATION')"
+ sqlite3 -init $INIT ${PACKAGES_DB} "INSERT INTO stats_builds (name, version, suite, architecture, status, build_date, build_duration) VALUES ('${SRCPACKAGE}', '${VERSION}', '${SUITE}', '${ARCH}', 'unreproducible', '${DATE}', '${DURATION}')"
update_db_and_html
fi
}
@@ -264,6 +266,7 @@ else
echo "${SRCPACKAGE} failed to build from source."
calculate_build_duration
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO results (package_id, version, status, build_date, build_duration) VALUES ('${SRCPKGID}', '${VERSION}', 'FTBFS', '$DATE', '$DURATION')"
+ sqlite3 -init $INIT ${PACKAGES_DB} "INSERT INTO stats_builds (name, version, suite, architecture, status, build_date, build_duration) VALUES ('${SRCPACKAGE}', '${VERSION}', '${SUITE}', '${ARCH}', 'FTBFS', '${DATE}', '${DURATION}')"
update_db_and_html
fi
fi