Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-19 | reproducible: setup_notify: fix the package generation step after the last ↵ | Mattia Rizzolo | 1 | -1/+1 | |
refactor | |||||
2015-08-19 | reproducible: add idea by paravoid | Holger Levsen | 1 | -0/+1 | |
2015-08-18 | reproducible: alioth reschedule script: pipe args to alioth instead of ↵ | Mattia Rizzolo | 2 | -2/+5 | |
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-18 | reproducible: scheduler: add a --null flag to read arguments from stdin and ↵ | Mattia Rizzolo | 1 | -1/+12 | |
consider them null-terminated. Thanks Lunar for the suggestion | |||||
2015-08-18 | rebootstrap: try bootstrapping the hurd | Helmut Grohne | 1 | -4/+4 | |
2015-08-18 | reproducible: remote scheduler: correctly parse the -m option | Mattia Rizzolo | 1 | -2/+2 | |
2015-08-18 | reproducible: fix suite stats the ugly way... | Holger Levsen | 2 | -2/+2 | |
2015-08-18 | reproducible: fix one amd64'ism | Holger Levsen | 1 | -1/+1 | |
2015-08-18 | reproducible: enable armhf somemore | Holger Levsen | 2 | -6/+8 | |
2015-08-18 | reproducible: enable armhf | Holger Levsen | 1 | -1/+1 | |
2015-08-17 | reproducible: notes: do not fail when not run on jenkins due to lack of the ↵ | Mattia Rizzolo | 1 | -2/+6 | |
BUILD_URL evn variable | |||||
2015-08-17 | reproducible: notes: do not fail the job when the version is missing | Mattia Rizzolo | 1 | -5/+10 | |
2015-08-17 | reproducible: common.py: nest try/except clauses to really catch every ↵ | Mattia Rizzolo | 1 | -17/+18 | |
possible sql error | |||||
2015-08-17 | reproducible: common.py: catch psycopg2.OperationalError when the connection ↵ | Mattia Rizzolo | 1 | -0/+9 | |
timeouts in start_udd_connection to output a useful error message | |||||
2015-08-17 | reproducible: common.py: set a connection timeout of 5 seconds for udd ↵ | Mattia Rizzolo | 1 | -1/+2 | |
connections | |||||
2015-08-17 | reproducible: common.py: use the keyword syntax instead of libpq string to ↵ | Mattia Rizzolo | 1 | -4/+6 | |
connect to udd | |||||
2015-08-16 | reproducible freebsd: formatting | Holger Levsen | 1 | -1/+1 | |
2015-08-16 | reproducible freebsd: try harder and enable debugging | Holger Levsen | 1 | -4/+4 | |
2015-08-16 | reproducible: maintenance: reduce logparse noise when deleting old ↵ | Mattia Rizzolo | 2 | -2/+1 | |
directories in /srv/reproducible-results | |||||
2015-08-15 | reproducible: s#$DBDVERSION#$DIFFOSCOPE#g | Holger Levsen | 6 | -29/+29 | |
2015-08-15 | reproducible: s#debbindiff#diffoscope#g in most of the output | Holger Levsen | 12 | -43/+43 | |
2015-08-15 | reproducible: we should update the webpage to reflect our current marketing ↵ | Holger Levsen | 1 | -0/+1 | |
material (=lunars latest talk) | |||||
2015-08-15 | reproducible freebsd: also run make installworld installkernel distribution | Holger Levsen | 2 | -9/+16 | |
2015-08-15 | reproducible: build: fix gen_package_html invocation | Mattia Rizzolo | 1 | -1/+1 | |
2015-08-15 | reproducible: scheduler: schedule less armhf packages, only max 75 | Mattia Rizzolo | 1 | -1/+1 | |
2015-08-15 | reproducible: scheduler: only schedule packages in unstable for armhf | Mattia Rizzolo | 1 | -8/+8 | |
2015-08-15 | reproducible: scheduler: also turn the global limit arch-dependant | Mattia Rizzolo | 1 | -5/+3 | |
2015-08-15 | reproducible: scheduler: slight refactor to enable multiple architecture support | Mattia Rizzolo | 2 | -73/+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-15 | reproducible: _html_packages: add architecture qualifier after the current ↵ | Mattia Rizzolo | 1 | -1/+2 | |
suite name | |||||
2015-08-15 | reproducible: _html_packages: improve gen_suites_links() for multiple ↵ | Mattia Rizzolo | 1 | -24/+20 | |
architecture support | |||||
2015-08-15 | reproducible: html_packages: convert gen_suite_links() to the new objects ↵ | Mattia Rizzolo | 1 | -18/+11 | |
instead of db quering | |||||
2015-08-15 | reproducible: fix all users of gen_packages_html() after the refactoring of it | Mattia Rizzolo | 7 | -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. | |||||
2015-08-15 | reproducible: html_packages: refactor gen_packages_html() to use the new ↵ | Mattia Rizzolo | 1 | -79/+38 | |
Package class This include some refactoring that change the interface, mainly: * it does not care anymore about suites/architectures, it always builds for all suites/architectures (it's only 0.122 for one package with no_clean=True) + this allows to remove *a lot* of crappy code * it expects a list of Package instances, no more of strings (package names) * check_package_status() got removed (as incorporated into the class) This breaks quite everything, still need to update all the users of this function. | |||||
2015-08-15 | reproducible: common: add classes Package, Build, Bug, Issue, Note, NotedPkg ↵ | Mattia Rizzolo | 1 | -1/+131 | |
describing a package and its state | |||||
2015-08-15 | Revert "reproducible: shorten irc notification text" | Holger Levsen | 1 | -2/+2 | |
This reverts commit fc28ef4b067bd66daa7bd6f859c5aa28adaa9f57. | |||||
2015-08-15 | reproducible: shorten irc notification text | Holger Levsen | 1 | -2/+2 | |
2015-08-15 | reproducible: maintenance: also consider architecture while grepping for ↵ | Mattia Rizzolo | 2 | -9/+14 | |
failed build to reschedule | |||||
2015-08-15 | reproducible freebsd: widen sudoers | Holger Levsen | 1 | -1/+2 | |
2015-08-14 | reproducible: sometimes running on a different cpu is easier than expected | Holger Levsen | 1 | -3/+2 | |
2015-08-14 | reproducible: support for arbitrary PPAs | Holger Levsen | 1 | -0/+1 | |
2015-08-14 | reproducible freebsd: also build the kernel and always build with -j | Holger Levsen | 1 | -2/+6 | |
2015-08-13 | reproducible freebsd: disable cleanup for debugging | Holger Levsen | 1 | -2/+3 | |
2015-08-12 | reproducible freebsd: build a 2nd time, copy results over and run debbindiff ↵ | Holger Levsen | 2 | -27/+22 | |
on them | |||||
2015-08-12 | reprdoducible: better deal with network problems | Holger Levsen | 1 | -1/+2 | |
2015-08-12 | update FreeBSD notes | Holger Levsen | 1 | -2/+2 | |
2015-08-12 | reproducible freebsd: fix pathes | Holger Levsen | 1 | -3/+3 | |
2015-08-12 | reproducible freebsd: follow the docs and build in /usr/src | Holger Levsen | 2 | -11/+15 | |
2015-08-11 | reproducible: notes: hardcode amd64 in a query for now | Mattia Rizzolo | 1 | -1/+2 | |
2015-08-10 | install postfix and configure munin | Holger Levsen | 1 | -1/+7 | |
2015-08-10 | logic in order | Holger Levsen | 1 | -1/+1 | |