summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-02-16 23:53:36 +0100
committerMattia Rizzolo <mattia@mapreri.org>2015-02-16 23:53:36 +0100
commitaf6565ccc3c88cc99bc73e1df61d1878d4d51a74 (patch)
tree34aea14d71ad77e07c6b7731c95f4f8712e55498
parent1ddba25150bf1688eccfc11c6ca28b33bdde9927 (diff)
downloadjenkins.debian.net-af6565ccc3c88cc99bc73e1df61d1878d4d51a74.tar.xz
reproducible: fixup previous commit
for some reason the `python3 -c 'import reproducible_html_indexes'` does not work. Call directly the script: losing 4 seconds is not a big deal...
-rwxr-xr-xbin/reproducible_schedule_on_demand.sh2
-rwxr-xr-xbin/reproducible_scheduler.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_schedule_on_demand.sh b/bin/reproducible_schedule_on_demand.sh
index b32061b9..5e3c56e0 100755
--- a/bin/reproducible_schedule_on_demand.sh
+++ b/bin/reproducible_schedule_on_demand.sh
@@ -56,7 +56,7 @@ MESSAGE="$TOTAL package(s) manually (re-)scheduled for immediate testing: ${PACK
# finally
schedule_packages
-python3 -c "from reproducible_html_indexes import build_page; build_page('scheduled')"
+/srv/jenkins/bin/reproducible_html_indexes.py
echo
echo "$MESSAGE"
kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "$MESSAGE"
diff --git a/bin/reproducible_scheduler.sh b/bin/reproducible_scheduler.sh
index d033ca3e..e31261d5 100755
--- a/bin/reproducible_scheduler.sh
+++ b/bin/reproducible_scheduler.sh
@@ -152,7 +152,7 @@ schedule_packages() {
update_apt
COUNT_SCHEDULED=$(sqlite3 ${PACKAGES_DB} 'SELECT count(name) FROM sources_scheduled')
if [ $COUNT_SCHEDULED -gt 250 ] ; then
- python3 -c "from reproducible_html_indexes import build_page; build_page('scheduled')"
+ /srv/jenkins/bin/reproducible_html_indexes.py
echo "$COUNT_SCHEDULED packages scheduled, nothing to do."
exit 0
else
@@ -210,7 +210,7 @@ MESSAGE="$MESSAGE and $AMOUNT packages with the same version again, for a total
# finally
schedule_packages
-python3 -c "from reproducible_html_indexes import build_page; build_page('scheduled')"
+/srv/jenkins/bin/reproducible_html_indexes.py
echo
echo "$MESSAGE"
kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "$MESSAGE"