summaryrefslogtreecommitdiffstats
path: root/bin
AgeCommit message (Collapse)AuthorFilesLines
2015-08-19reproducible: disable debugHolger Levsen1-1/+1
2015-08-19reproducible: add links to (the) other archsHolger Levsen1-0/+4
2015-08-19reproducible: fixup last commitHolger Levsen1-2/+2
2015-08-19reproducible: add links to (the) other archsHolger Levsen1-1/+7
2015-08-19reproducible: fix navigationHolger Levsen1-2/+2
2015-08-19reproducible: remote_scheduler: rearrange the argparse bits to really print ↵Mattia Rizzolo1-9/+4
all option in -h
2015-08-19reproducible: remote_scheduler: don't require the -s option at argparse ↵Mattia Rizzolo1-1/+5
level, bug check it later on (this allow passing just --null via argv)
2015-08-19reproducible: remote_scheduler: do not ball users out when they schedule an ↵Mattia Rizzolo1-3/+2
inexistent package, just print the error
2015-08-19reproducible: mention this is arch dependent nowHolger Levsen1-1/+1
2015-08-19reproducible: fix brainoHolger Levsen1-1/+1
2015-08-19reproducible: make it succeedHolger Levsen1-1/+6
2015-08-19reproducible: deal with diversion by zeroHolger Levsen1-7/+7
2015-08-19reproducible: enable debugHolger Levsen1-1/+1
2015-08-19reproducible: remove debugging codeHolger Levsen1-1/+0
2015-08-19reproducible: we only test unstable on armhf atm...Holger Levsen1-0/+4
2015-08-19reproducible: fix suite/arch pkg_state graphsHolger Levsen1-1/+1
2015-08-19reproducible: fix another linkHolger Levsen1-1/+1
2015-08-19reproducible: fix pathes to imagesHolger Levsen1-2/+2
2015-08-19reproducible: fix typoHolger Levsen1-1/+1
2015-08-19reproducible: fix table updatesHolger Levsen1-16/+16
2015-08-19reproducible: keep arch specific stats and introduce suite_$arch_statsHolger Levsen3-35/+99
2015-08-19reproducible: fix stats in dashboard (WIP)Holger Levsen1-15/+15
2015-08-19reproducible: setup_notify: fix the package generation step after the last ↵Mattia Rizzolo1-1/+1
refactor
2015-08-18reproducible: alioth reschedule script: pipe args to alioth instead of ↵Mattia Rizzolo1-1/+0
passing them through commal line, to avoid ssh screw up. Thanks to Lunar and Dhole for the help on figuring out how to gettig this working
2015-08-18reproducible: scheduler: add a --null flag to read arguments from stdin and ↵Mattia Rizzolo1-1/+12
consider them null-terminated. Thanks Lunar for the suggestion
2015-08-18reproducible: remote scheduler: correctly parse the -m optionMattia Rizzolo1-2/+2
2015-08-18reproducible: fix suite stats the ugly way...Holger Levsen2-2/+2
2015-08-18reproducible: fix one amd64'ismHolger Levsen1-1/+1
2015-08-18reproducible: enable armhf somemoreHolger Levsen2-6/+8
2015-08-18reproducible: enable armhfHolger Levsen1-1/+1
2015-08-17reproducible: notes: do not fail when not run on jenkins due to lack of the ↵Mattia Rizzolo1-2/+6
BUILD_URL evn variable
2015-08-17reproducible: notes: do not fail the job when the version is missingMattia Rizzolo1-5/+10
2015-08-17reproducible: common.py: nest try/except clauses to really catch every ↵Mattia Rizzolo1-17/+18
possible sql error
2015-08-17reproducible: common.py: catch psycopg2.OperationalError when the connection ↵Mattia Rizzolo1-0/+9
timeouts in start_udd_connection to output a useful error message
2015-08-17reproducible: common.py: set a connection timeout of 5 seconds for udd ↵Mattia Rizzolo1-1/+2
connections
2015-08-17reproducible: common.py: use the keyword syntax instead of libpq string to ↵Mattia Rizzolo1-4/+6
connect to udd
2015-08-16reproducible freebsd: try harder and enable debuggingHolger Levsen1-4/+4
2015-08-16reproducible: maintenance: reduce logparse noise when deleting old ↵Mattia Rizzolo1-1/+1
directories in /srv/reproducible-results
2015-08-15reproducible: s#$DBDVERSION#$DIFFOSCOPE#gHolger Levsen6-29/+29
2015-08-15reproducible: s#debbindiff#diffoscope#g in most of the outputHolger Levsen10-41/+41
2015-08-15reproducible freebsd: also run make installworld installkernel distributionHolger Levsen1-7/+10
2015-08-15reproducible: build: fix gen_package_html invocationMattia Rizzolo1-1/+1
2015-08-15reproducible: scheduler: schedule less armhf packages, only max 75Mattia Rizzolo1-1/+1
2015-08-15reproducible: scheduler: only schedule packages in unstable for armhfMattia Rizzolo1-8/+8
2015-08-15reproducible: scheduler: also turn the global limit arch-dependantMattia Rizzolo1-5/+3
2015-08-15reproducible: scheduler: slight refactor to enable multiple architecture supportMattia Rizzolo1-72/+188
This moves all the limits handling to a dedicated class and the data to a dedicated object, instead of embedding them into the scheduling code, where they are hard to find and to edit.
2015-08-15reproducible: _html_packages: add architecture qualifier after the current ↵Mattia Rizzolo1-1/+2
suite name
2015-08-15reproducible: _html_packages: improve gen_suites_links() for multiple ↵Mattia Rizzolo1-24/+20
architecture support
2015-08-15reproducible: html_packages: convert gen_suite_links() to the new objects ↵Mattia Rizzolo1-18/+11
instead of db quering
2015-08-15reproducible: fix all users of gen_packages_html() after the refactoring of itMattia Rizzolo7-37/+22
notable changes: * gen_packages_html() in common.sh got renamed to the singular version gen_package_html() and now accept only one argument (a package name) + thus reproducible_blacklist.sh got fixed to pass one package at time + this greatly semplify the code, by removing *a lot* of crappy code * _html_all_packages.py really becomed a 2-liner, with part of its login being now either in _html_packages.py or removed.