Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Link to the lint warnings page from the revision page | Christopher Baines | 2019-09-01 |
| | |||
* | Support filtering lint warnings by linter | Christopher Baines | 2019-09-01 |
| | |||
* | Add lint-checkers-for-revision to the lint-checker module | Christopher Baines | 2019-09-01 |
| | |||
* | Add a new table guix_revision_lint_checkers | Christopher Baines | 2019-09-01 |
| | | | | | | | | | To associate a set of lint checkers with a specific revision. While there is the association through the lint warnings, that only works for checkers where there are lint warnings for that revision. Therefore, to allow finding all the checkers for a specific revision, also associate them directly with the revision. | ||
* | Handle a change in guix with the <derivation-input> record | Christopher Baines | 2019-09-01 |
| | | | | | | | | The first field is now a <derivation> record, rather than a store path for the derivation. It's probably not necessary to cope with two versions, but this is what I've done currently. | ||
* | Log the manifest derivation when loading new revisions | Christopher Baines | 2019-09-01 |
| | | | | As this is useful to know. | ||
* | Add a page to show the lint warnings for a revision | Christopher Baines | 2019-09-01 |
| | |||
* | Add lint-warnings-for-guix-revision to the lint-warning module | Christopher Baines | 2019-09-01 |
| | |||
* | Include glibc-locales from the inferior guix in the environment | Christopher Baines | 2019-09-01 |
| | | | | | | | | | | | When loading data from an inferior Guix, first build it's latest version of glibc-locales, and include that in the environment from the inferior. This improves locale support, which is currently relevant for extracting lint warnings. Without this change, you'd only be able to switch to locales supported by the glibc-utf8-locales package, assuming that the right version is available. | ||
* | Log the guix store path being used | Christopher Baines | 2019-09-01 |
| | | | | In the load-new-guix-revision module. | ||
* | Improve handling of errors when changing locale | Christopher Baines | 2019-09-01 |
| | | | | In the load-new-guix-revision module. | ||
* | Display counts of lint warnings on the revision page | Christopher Baines | 2019-09-01 |
| | |||
* | Add lint-warning-count-by-lint-checker-for-revision | Christopher Baines | 2019-09-01 |
| | | | | | To return counts of lint warnings, grouped by lint checker for a specific revision. | ||
* | Store lint warnings in the database | Christopher Baines | 2019-09-01 |
| | | | | | | | | | | This commit adds the relevant tables and code to store lint warnings in the database. Currently, only lint checkers which don't require access to the network will be run, as this allows the processing to happen without network access. Also, this functionality won't work in older versions of Guix which don't expose the lint warnings in a compatible way. | ||
* | Add buffering to the log handling for jobs | Christopher Baines | 2019-08-31 |
| | | | | | To increase the log output speed, avoiding inserting one character at a time in to the database. | ||
* | Add insert-missing-data-and-return-all-ids to the model utils module | Christopher Baines | 2019-08-31 |
| | | | | | This should help greatly with populating the database with new entries, and greatly reduce code duplication. | ||
* | Use $STR$ for better quoting in quote-string | Christopher Baines | 2019-08-31 |
| | |||
* | Add value->sql-boolean to (guix-data-service model utils) | Christopher Baines | 2019-08-31 |
| | |||
* | Fix insert-guix-revision to return an id | Christopher Baines | 2019-08-31 |
| | | | | Rather than an id wrapped in a list. | ||
* | Improve error handling for processing emails | Christopher Baines | 2019-08-31 |
| | |||
* | Alphabetically order the derivation comparison page | Christopher Baines | 2019-08-06 |
| | |||
* | Remove the build status filter from the compare derivations page | Christopher Baines | 2019-08-06 |
| | | | | As there isn't sufficient data to make this work yet. | ||
* | Support filtering by systems and targets when comparing derivations | Christopher Baines | 2019-08-06 |
| | |||
* | Improve derivation comparison to show more changes | Christopher Baines | 2019-08-06 |
| | | | | | In cases where the version is changed for example, the relevant derivations will now show up, whereas previously they did not. | ||
* | Only show the Compare button when it'll work | Christopher Baines | 2019-08-05 |
| | | | | On the branch page. | ||
* | Avoid erroring when processing emails again | Christopher Baines | 2019-08-05 |
| | | | | | These changes allow processing emails again, and just creating job and branch entries where data is missing. | ||
* | Remove test data after the tests have ran | Christopher Baines | 2019-08-05 |
| | | | | | The load-new-guix-revision tests aren't transactional, so truncate some tables after running the tests. | ||
* | Change the git_branches table primary key | Christopher Baines | 2019-08-05 |
| | | | | To allow for having branches in multiple git repositories. | ||
* | Properly handle not finding a matching derivation | Christopher Baines | 2019-08-05 |
| | |||
* | Set the Vary header to a sensible default value | Christopher Baines | 2019-08-05 |
| | | | | As most pages vary based on the Accept header. | ||
* | Tweak the branch table layout | Christopher Baines | 2019-08-05 |
| | |||
* | Clear the previous log entry when starting a job | Christopher Baines | 2019-08-04 |
| | |||
* | Fix some duplicated values in tables | Christopher Baines | 2019-08-04 |
| | | | | | | | | | | | | | The licenses table, along with the package_metadata table had duplicate values. This could happen as the unique constraints on those tables didn't properly account for the nullable fields. The duplicates in those tables also affected the license_sets, packages, package_derivations tables in a similar way. Finally, the guix_revision_package_derivations table was also affected. This commit adds a migration to fix the data, as well as the constraints. THe code to populate the licenses and package_metadata tables is also updated. | ||
* | Link to the comparison page from the branch page | Christopher Baines | 2019-07-29 |
| | | | | To allow easily comparing revisions. | ||
* | Link to the package pages from the comparison page | Christopher Baines | 2019-07-29 |
| | |||
* | Link to cgit on the comparison page | Christopher Baines | 2019-07-29 |
| | |||
* | Add a function to get the cgit URL bases for revisions | Christopher Baines | 2019-07-29 |
| | | | | To enable adding a link to cgit to the comparison page. | ||
* | Fix the JSON compare output | Christopher Baines | 2019-07-29 |
| | |||
* | Neaten up how branches in Git repositories are linked to | Christopher Baines | 2019-07-27 |
| | |||
* | Link to the Statistics and Jobs pages from the index page | Christopher Baines | 2019-07-27 |
| | |||
* | Fix the latest-processed-revision pages | Christopher Baines | 2019-07-27 |
| | |||
* | Show links to the cgit pages for repositories on the index page | Christopher Baines | 2019-07-22 |
| | |||
* | Switch the index page to show branches for a repository | Christopher Baines | 2019-07-22 |
| | | | | As that's probably more useful than recent revisions and jobs. | ||
* | Extract out the branches with most recent commits table | Christopher Baines | 2019-07-22 |
| | | | | As I'm thinking about using this on the index page. | ||
* | Extract out view-revision/jobs-and-events | Christopher Baines | 2019-07-22 |
| | | | | This is common to both view-revision and unknown-revision. | ||
* | Extract out view-revision/git-repositories | Christopher Baines | 2019-07-22 |
| | | | | | As this was duplicated in the functions for viewing known and unknown revisions. | ||
* | Display the jobs related to a revision on the revision page | Christopher Baines | 2019-07-22 |
| | |||
* | Link from a revision to the git repository page | Christopher Baines | 2019-07-19 |
| | |||
* | Improve how repositories and branches are handled | Christopher Baines | 2019-07-19 |
| | | | | | Make the link between repositories and branches clearer, replacing the /branches and /branch pages by /repository/ and /repository/*/branch/* pages. | ||
* | Remove restrictions in select-job-for-update | Christopher Baines | 2019-07-19 |
| | | | | This allows running jobs manually that have failed. |