aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Improve the builds info on the revision package version pageChristopher Baines2019-12-27
| | | | Show multiple builds, and link to the build page.
* Fix more cases where equivalent builds were missedChristopher Baines2019-12-26
|
* Add pagination to the jobs pageChristopher Baines2019-12-26
|
* Remove reverse from the copy of http-multiple-getChristopher Baines2019-12-26
| | | | | This makes assumptions about the return value of the provided procedure, and fails if it doesn't return a list.
* Fix the colspan for the derivation history table chart rowsChristopher Baines2019-12-26
| | | | It should have been changed to 4 when the builds column was added.
* Guard against failures when loading the narinfo signing public keyChristopher Baines2019-12-26
|
* Fix the option alist element names for the narinfo signing keyChristopher Baines2019-12-26
|
* Add copyright and license headers to a bunch of source filesChristopher Baines2019-12-26
| | | | That were missing them.
* Remove a rogue 1 from the (guix-data-service model nar) moduleChristopher Baines2019-12-26
|
* Serve the /nix-cache-info responseChristopher Baines2019-12-26
| | | | | This should be the last piece of the puzzle for providing substitutes for derivations.
* Serve narinfo files for derivationsChristopher Baines2019-12-26
|
* Add a function to fetch references for derivationsChristopher Baines2019-12-26
| | | | | This replicates the store item references for the derivation, through looking up the inputs which the derivation references, and also the sources.
* Add a function to fetch a derivation by file name hashChristopher Baines2019-12-26
|
* Use the returned file name in select-derivation-by-file-nameChristopher Baines2019-12-26
| | | | | They should be the same, but it seems more sensible to return the value from the database.
* Create an index for the hash component of derivation filenamesChristopher Baines2019-12-26
| | | | | | This is to aid rendering of narinfo files. They're requested with the path /HASH.narinfo, so to quickly find the relevant derivation, this index can be used.
* Sort the web modules in the SOURCES list in Makefile.amChristopher Baines2019-12-26
|
* Render nar files for derivationsChristopher Baines2019-12-26
| | | | | In the same manor that Guix publish does. This is working towards being able to serve substitutes for derivations.
* Add a "plain" view for derivationsChristopher Baines2019-12-26
|
* Add a helper function to render textChristopher Baines2019-12-26
|
* Add a function serialize a derivationChristopher Baines2019-12-26
| | | | | | This effectively duplicates the behaviour in Guix for serializing derivations, but this uses the database representation in the Guix Data Service, rather than the records Guix uses.
* Ensure output ordering for derivations is correctChristopher Baines2019-12-26
| | | | This affects the formatted derivation output.
* Fix the representation of the fixed output derivation hashesChristopher Baines2019-12-26
| | | | | | | | | | | Previously, they were nix-base32-string encoded, but the representation in the derivations is base16, so it doesn't make sense to use a different representation in the database. Therefore, add some code that runs before the start of each job to convert the data in the database. It was easier to do this in Guile with the existing support for working with these bytevector representations. After some migration period, the code for converting the old hashes can be removed.
* Group derivation input outputs together by derivationChristopher Baines2019-12-26
| | | | | | Both in terms of the code fetching the data from the database, as well as the formatted and detail outputs. This corrects an error in the formatted output for derivations where inputs would be duplicated.
* Use HTTP pipelining when making requests to build serversChristopher Baines2019-12-26
| | | | This removes some overhead in making a connection for each request.
* Fix the successful builds outputs query where there are no revisionsChristopher Baines2019-12-26
| | | | As it was erroring before.
* Fix the derivations list on the builds pageChristopher Baines2019-12-23
|
* Fix the unknown build counts on the builds pagesChristopher Baines2019-12-23
|
* Better handle errors within process-load-new-guix-revision-jobChristopher Baines2019-12-23
|
* Fix an error when updating the package derivation versions tableChristopher Baines2019-12-23
|
* Fix the query-build-servers script when no commits are providedChristopher Baines2019-12-23
|
* Fix the default max-processes for the process-jobs scriptChristopher Baines2019-12-22
|
* Fix a bug with argument handling in the query-build-servers scriptChristopher Baines2019-12-22
|
* Include builds on the derivation history pageChristopher Baines2019-12-22
|
* Use the full width of the page for the derivation history tableChristopher Baines2019-12-22
| | | | | As it's quite big. Also remove the (More information) links, as they weren't useful.
* Add a function to rebuild the package_derivations_by_guix_revisionChristopher Baines2019-12-22
| | | | At the moment, some data is missing, but this code will fix that.
* Extract out some functions from update-package-derivations-tableChristopher Baines2019-12-22
| | | | To allow these to be used independently.
* Extract management of package_derivations_by_guix_revision_rangeChristopher Baines2019-12-22
| | | | ... entries in to a separate module, to split the code up a little further.
* Fix the use of defined? in relation to channel newsChristopher Baines2019-12-22
| | | | This worked fine in a REPL, but here it seems the module needs to be passed.
* Add links from the builds pages to the pages for individual buildsChristopher Baines2019-12-22
|
* Allow filtering the revision builds page by systemChristopher Baines2019-12-22
|
* Filter builds on the revision builds page by revisionChristopher Baines2019-12-22
|
* Handle derivations with no known buildChristopher Baines2019-12-22
| | | | When displaying build stats.
* Ignore cross built derivations for the build statsChristopher Baines2019-12-22
|
* Improve the error handling for the build pageChristopher Baines2019-12-16
|
* Link to the derivation outputs from the package reproducibility pageChristopher Baines2019-12-16
|
* Allow filtering by system and target on the derivation-outputs pageChristopher Baines2019-12-16
| | | | So that this can match up with the package reproducibility page.
* Add titles to a couple of revision pagesChristopher Baines2019-12-16
|
* Simplify the derivations page displayChristopher Baines2019-12-16
| | | | | Displaing the outputs didn't add much, so focus on neatly displaying the builds.
* Drop the default number of derivations to displayChristopher Baines2019-12-16
| | | | As 100 is quite a lot to display by default.
* Add a small bottom margin to the build status spanChristopher Baines2019-12-16
| | | | So it displays better when there are items below it.