summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-02-21 18:33:02 +0100
committerHolger Levsen <holger@layer-acht.org>2015-02-21 18:33:02 +0100
commit15f8d88c91833ab2a127ab112af7d750ba017bf0 (patch)
tree4cb47cdcb3b857b823c15a3b776e2cfa1c6bd59d
parent72a8e618729f320c0ff3033cfb0abd5cb27c5a60 (diff)
downloadjenkins.debian.net-15f8d88c91833ab2a127ab112af7d750ba017bf0.tar.xz
reproducible: rename unschedule_from_db() to update_db_and_html()
-rw-r--r--TODO1
-rwxr-xr-xbin/reproducible_build.sh17
2 files changed, 10 insertions, 8 deletions
diff --git a/TODO b/TODO
index 626027b2..872a454b 100644
--- a/TODO
+++ b/TODO
@@ -146,7 +146,6 @@ properties:
<h01ger> | but those qemubuilders would only get 4 or 8gb ram... maybe 6. and that will have a huge impact
* cleanup+rename:
-** unschedule_from_db( (defined in build.sh...)
** process_packages() (defined in common.sh...)
* merge reproducible_setup_schroot in schroot-create or delete the latter?
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index c570d41f..c05e80f6 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -23,11 +23,14 @@ cleanup_userContent() {
rm -f /var/lib/jenkins/userContent/buildinfo/${SRCPACKAGE}_*.buildinfo > /dev/null 2>&1
}
-unschedule_from_db() {
+update_db_and_html() {
# unmark build as properly finished
sqlite3 -init $INIT ${PACKAGES_DB} "DELETE FROM sources_scheduled WHERE name = '$SRCPACKAGE';"
set +x
- # (force) update html page for package (only really needed for long building packages where a note updates the page during build....)
+ # (force) update html page for package
+ # (This should normally not be needed except for long building packages
+ # where the page was already updated after the build started, probably
+ # through notes being updated.)
touch -d $PREDATE /var/lib/jenkins/userContent/rb-pkg/${SRCPACKAGE}.html
process_packages $SRCPACKAGE
echo
@@ -81,7 +84,7 @@ call_debbindiff() {
echo "debbindiff found no differences in the changes files, and a .buildinfo file also exist." | tee -a ${RBUILDLOG}
echo "${SRCPACKAGE} built successfully and reproducibly." | tee -a ${RBUILDLOG}
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"${VERSION}\", \"reproducible\", \"$DATE\")"
- unschedule_from_db
+ update_db_and_html
else
echo | tee -a ${RBUILDLOG}
echo -n "$(date) - ${SRCPACKAGE} failed to build reproducibly " | tee -a ${RBUILDLOG}
@@ -103,7 +106,7 @@ call_debbindiff() {
kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "$MESSAGE" || true # don't fail the whole job
fi
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"${VERSION}\", \"unreproducible\", \"$DATE\")"
- unschedule_from_db
+ update_db_and_html
fi
}
@@ -151,7 +154,7 @@ else
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"None\", \"404\", \"$DATE\")"
set +x
echo "Warning: Maybe there was a network problem, or ${SRCPACKAGE} is not a source package, or was removed or renamed. Please investigate." | tee -a ${RBUILDLOG}
- unschedule_from_db
+ update_db_and_html
exit 0
else
set -e
@@ -181,7 +184,7 @@ else
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"${VERSION}\", \"not for us\", \"$DATE\")"
set +x
echo "Package ${SRCPACKAGE} (${VERSION}) shall only be build on \"$(echo "${ARCHITECTURES}" | xargs echo )\" and thus was skipped." | tee -a ${RBUILDLOG}
- unschedule_from_db
+ update_db_and_html
exit 0
fi
set +e
@@ -225,7 +228,7 @@ else
set +x
echo "${SRCPACKAGE} failed to build from source."
sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"${VERSION}\", \"FTBFS\", \"$DATE\")"
- unschedule_from_db
+ update_db_and_html
fi
fi