aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/jobs
Commit message (Expand)AuthorAge
* WIPChristopher Baines2020-02-24
* Adapt some license related code to work without mock in the tests•••With Guile 3, there's a potential for mock to work in even fewer circumstances. So, adapt the code to enable writing the tests without mock. Christopher Baines2020-02-24
* Add missing ROLLBACK for transactionChristopher Baines2020-02-24
* Refactor the logging setup out of process-load-new-guix-revision-job•••To simplify both procedures. Christopher Baines2020-02-24
* Improve the job logging•••Switch to using a sequence for the ids in the log parts table, and spawn a thread to listen for output from the inferior processes, and enter it in to the database. Christopher Baines2020-02-15
* Make deleting the existing log parts optionalChristopher Baines2020-02-15
* Define a new parameter for a port used for the inferior error outputChristopher Baines2020-02-15
* Fake the store connection in the tests•••So that the tests don't require a store connection. Christopher Baines2020-02-14
* Add temporary roots for channel instance derivationsChristopher Baines2020-02-13
* Use a more long lived store connection for loading data•••As this will enable registering temporary roots, to avoid store items being garbage collected. Christopher Baines2020-02-13
* Start storing channel instance derivations•••These are the ones that relate to Guix pull. Christopher Baines2020-02-11
* Switch using set-current-system to parameterize•••As this is neater. Christopher Baines2020-02-11
* Refactor how channel derivations are handled•••Yet again... This makes the channel-derivations for each system accessible within the load-new-guix-revision procedure, in preparation for storing them in the database. Christopher Baines2020-02-09
* Collpase store-item-for-channel in to channel->guix-store-itemChristopher Baines2020-02-09
* Start computing channel instance derivations for multiple systems•••These aren't stored yet, but this is a start. Christopher Baines2020-02-09
* Further refactor channel->derivation-file-name•••To reduce the line length. Christopher Baines2020-02-09
* Refactor channel->derivation-file-name to reduce line lengthChristopher Baines2020-02-09
* Shift extracting channel news to later on•••To avoid race conditions between jobs, have it happen after the call to extract-information-from. Christopher Baines2020-02-09
* Rework cross derivations support•••Stop using the system values as targets, and remove package derivation entries where this is the case. Switch the non-cross derivation case to have a target of "", rather than matching the system, as this makes more sense, and is more consistent now that the target values no longer match the system values. Hardcode some more correct target values, and use these instead. Hopefully this can be better integrated with Guix in the future. This commit also includes a migration attempting to shrink some indexes. Christopher Baines2020-02-08
* Store information about system testsChristopher Baines2020-02-03
* Log the time to lock package_versions_by_guix_revision_rangeChristopher Baines2020-02-02
* Log the time to lock load-new-guix-revision-insertsChristopher Baines2020-02-02
* Log the time taken to acquire advisory session locksChristopher Baines2020-02-02
* Call add-temp-root for the derivation file names•••In an attempt to stop the derivations from being garbage collected between the time they're generated, and when they're potentially read by the Guix Data Service. Christopher Baines2020-02-02
* Refactor processing lint warnings•••Extract out a function to make the code slightly easier to read. Christopher 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
* 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
* Add more timing and debugging output to the load process•••To help identify what's taking the most time. Christopher Baines2020-01-04
* 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
* Add pagination to the jobs pageChristopher Baines2019-12-26
* Add copyright and license headers to a bunch of source files•••That were missing them. Christopher Baines2019-12-26
* Fix the representation of the fixed output derivation hashes•••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. Christopher Baines2019-12-26
* Better handle errors within process-load-new-guix-revision-jobChristopher Baines2019-12-23
* Extract management of package_derivations_by_guix_revision_range•••... entries in to a separate module, to split the code up a little further. Christopher Baines2019-12-22
* Fix the use of defined? in relation to channel news•••This worked fine in a REPL, but here it seems the module needs to be passed. Christopher Baines2019-12-22
* Add new derivation_output_details_set_id column to the builds table•••As this will hopefully provide a faster way of associating derivations with builds. Christopher Baines2019-12-12
* Just update the package derivation entries that need updating•••Previously, all the entries for the branch were deleted, but not, only the entries for the branch, that are present in the revision that was loaded will be deleted. This is more efficient, as it avoids deleting and recreating entries in the table that shouldn't have changed. Christopher Baines2019-11-24
* Insert channel news entries when loading new guix revisions•••If the channel-news-for-commit function is present. Christopher Baines2019-11-21
* Extract out creating the guix-revision from extract-information-from•••To allow for using the guix-revision-id when inserting channel news entries. Christopher Baines2019-11-21
* Refactor channel handling in the load-new-guix-revision module•••To allow for passing the channel to channel-news-for-commit. Christopher Baines2019-11-21
* Add a new table to describe the history of derivations•••There's already the package_versions_by_guix_revision_range table, but I think it would be also useful to be able to see how derivations change over time. Christopher Baines2019-11-09
* Work around a problem loading guix revisions•••Between b13b9384bc43bf93c754c037956c8ef9a99c2b41 and 601171a9bc7ca6e4acb932895a07c0ca9aedfdac, this method failed, so catch the error to allow loading the affected revisions. Christopher Baines2019-11-03
* Send inferior error output to stderr•••Ideally this would go in to the database somehow as well, but the only idea I have for that is pass in a pipe, and then spawn a thread to read from the other end of that pipe in a loop to send the output to the database. That hasn't been written yet, so just send the output to stderr for now. Christopher Baines2019-10-18
* Remove unused inferior-package-transitive-supported-systems functionChristopher Baines2019-10-18
* Add a page for queued jobsChristopher Baines2019-10-12
* Make it easier to retry jobs•••Add a new event 'retry', and run jobs where the number of retry events is greater or equal to the number of failure events. Also add an index to the git_branches table to make the finding jobs query a bit faster. Christopher Baines2019-10-02
* Fail early if the inferior is #f•••This happens when the repl can't be loaded for example. Christopher Baines2019-09-29