diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-01-02 13:22:37 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-02 13:39:27 +0100 |
commit | 89afec4bc724a0f133e9450a889d94c743b65b6a (patch) | |
tree | 0f827642d1fdaba5a8fe7b62caf1c778990bf2b5 | |
parent | c45dda5f39c6893926873c930f835f3ecde412ba (diff) | |
download | jenkins.debian.net-89afec4bc724a0f133e9450a889d94c743b65b6a.tar.xz |
reproducible: try harder to schedule (many) packages without .buildinfo files
-rwxr-xr-x | bin/reproducible_scheduler.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/reproducible_scheduler.sh b/bin/reproducible_scheduler.sh index 1b64cc19..fbbdc06e 100755 --- a/bin/reproducible_scheduler.sh +++ b/bin/reproducible_scheduler.sh @@ -205,10 +205,12 @@ echo "So in total now $TOTAL packages about to be scheduled." ALL_PACKAGES="$ALL_PACKAGES $PACKAGES" MESSAGE="$MESSAGE, $AMOUNT packages with new versions" -if [ $TOTAL -lt 250 ] ; then - OLD=300 +if [ $TOTAL -lt 150 ] ; then + OLD=500 # used not to be needed... +elif [ $TOTAL -lt 250 ] ; then + OLD=400 # used to be 200 elif [ $TOTAL -le 350 ] ; then - OLD=150 + OLD=200 # used to be 100 else OLD=1 fi |