aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service
Commit message (Expand)AuthorAge
* Add a function to check how many repositories have x_git_repo_headerChristopher Baines2020-02-01
* Add a very basic repositories pageChristopher Baines2020-02-01
* Add a build servers pageChristopher Baines2020-02-01
* Refactor processing lint warnings•••Extract out a function to make the code slightly easier to read. Christopher Baines2020-02-01
* Fix indentationChristopher Baines2020-02-01
* Use the line numbers to make the package deduplication more stable•••Previously this would just compare on the version if the name was the same, but there are package definitions that share the name and version (itstool is one example). To try and make this more stable, to avoid weird errors, and unstable comparisons between revisions, use the line number when deduplicating packages. Christopher Baines2020-01-21
* Fail early if a package lookup fails when loading a revision•••I think this might be happening when packages are filtered out as duplicates (by name and version), but then a reference to a duplicate occurs somewhere, like in a lint warning. Christopher Baines2020-01-21
* Add a job events pageChristopher Baines2020-01-20
* Tweak the recent events table on the jobs pageChristopher Baines2020-01-20
* Improve the compare-invalid-parameters messagesChristopher Baines2020-01-18
* Switch to querying builds by output, rather than derivation•••This is better, as Cuirass will return a build for the derivation it built to generate that output. This avoids having to query for multiple derivations that generate a single output, until the one that Cuirass used is found. Christopher Baines2020-01-16
* Fix insert-build when derivation_output_details_set_id is NULL•••I can't figure out how to insert NULL through a param, so just construct a query to insert the values directly. Christopher Baines2020-01-16
* Fix select-build-id-by-build-server-and-derivation-file-name•••The id will be wrapped in a list. Christopher Baines2020-01-16
* Fix setting GUIX_LOCPATH when using open-inferior/containerChristopher Baines2020-01-13
* Add a small table of recent job events•••To make it easier to see what recently happened. Christopher Baines2020-01-12
* Don't hardcode the expected x-git-repo header value•••Rather than expecting it always to be "guix", store the expected value in the database, and use the value of the header to find the relevant repository. Christopher Baines2020-01-11
* Delete unused assoc-ref-multiple functionChristopher Baines2020-01-10
* Use the build_servers_build_config table when querying build servers•••This allows configuing which systems a build server builds. Christopher Baines2020-01-05
* Add a basic page for build serversChristopher Baines2020-01-05
* Add a couple of comments to select-outputs-without-known-nar-entriesChristopher Baines2020-01-05
* Remove -for-successful-builds from procedure name•••This used to be the case, but now it just selects all outputs, as that's quicker overall (as querying the build server is quick). Christopher Baines2020-01-05
* Make valid-systems quicker•••In the future, it would be good to pull this from the database again, but in some way which is really quick. Christopher Baines2020-01-05
* Don't hardcode the system and target for the derivation history pageChristopher Baines2020-01-05
* Extract out the derivation-history rendering codeChristopher Baines2020-01-05
* Fix the help text on the derivation outputs pageChristopher Baines2020-01-04
* Implement the search query input on the derivation outputs pageChristopher Baines2020-01-04
* Support the search query input on the revision derivations pageChristopher Baines2020-01-04
* Fix the help text on the revision derivations pageChristopher Baines2020-01-04
* Fix some missing arguments to view-revision-derivationsChristopher Baines2020-01-04
* Add a function to search for derivations in a revisionChristopher Baines2020-01-04
* Drop bottom margin of the dl's on the revision derivations page•••This makes the table display better. Christopher Baines2020-01-04
* Add missing headings to the revision derivations page tableChristopher Baines2020-01-04
* Remove the outputs from the query behind the revision derivations•••As that data is now unused. Christopher Baines2020-01-04
* Add a revision header and link to the package reproducibility page•••To make it easier to get back to the revision page, as well as setting the content more in context. Christopher Baines2020-01-04
* Add a revision header and link on the revision builds page•••To make it easier to get back to the revision page, as well as setting the page content in context. Christopher Baines2020-01-04
* Add more timing and debugging output to the load process•••To help identify what's taking the most time. Christopher Baines2020-01-04
* Fix the table layout on the derivation history pageChristopher Baines2020-01-03
* Add a #:loop? option to backfill-derivation-source-file-narsChristopher Baines2020-01-03
* Fix some instability in the lint warnings page results•••The ordering could flip around, so fix it better. Christopher Baines2020-01-02
* Fix a few list styling issuesChristopher Baines2020-01-02
* Remove the reset.css stylesheet•••This was copied over from Mumi, but I've noticed some styling issues with lists, and I'm not sure how well it interacts with Bootstrap. Simpler is better, so lets just try removing it. Christopher Baines2020-01-02
* Better split up the comparision functionality•••The packages comparison was getting confused by differences in the derivations, so split the data used to make the comparison more sensible. This resolves an issue comparing 8dd723f5… and 365892e9… which coinsided with the fix for importing foreign architecture derivations, meaning that a whole lot of new derivations appeared in the database. Prior to these changes, it appeared like every package was new, and with these changes, the list is more sensible. Christopher Baines2020-01-02
* Make it possible to specify the batch size•••In backfill-derivation-source-file-nars. Christopher Baines2019-12-31
* Switch to using package-supported-systems, not the transitive one•••This seems to work better for both generating the non-cross and cross derivations. Previously, using the package-transitive-supported-systems approach didn't generate some cross derivations. Christopher Baines2019-12-31
* Improve generating derivations for foreign architectures•••Use the second argument to package-transitive-supported-systems to correctly identify the different bootstrap path for non x86_64 and i686-linux. The previous implementation did work, but only up until a merge of core-updates changed the bootstrap approach. Christopher Baines2019-12-31
* Display details for the derivation source files•••If the nar file is available. Christopher Baines2019-12-30
* Add a function to backfill missing derivation source file nars•••If the file exists in the local store, then read it and add an entry to the derivation_source_file_nars table. This will help to fill in the missing entries, as currently entries are only added when the derivation source file isn't in the database when the load new revision job runs. Christopher Baines2019-12-30
* Improve entity handling in the sxml module•••This is useful as stexi->shtml uses *ENTITY* so handling this here means that the HTML output for texinfo is better. Christopher Baines2019-12-30
* Rework insert-derivation-sources to use a helper function•••This means it returns ids properly. Christopher Baines2019-12-29
* Serve narinfo files for derivation sourcesChristopher Baines2019-12-29