aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAge
* Support polling git repositories for new branches/revisionsChristopher Baines2023-10-09
| | | | | | | | | | | This is mostly a workaround for the occasional problems with the guix-commits mailing list, as it can break and then the data service doesn't learn about new revisions until the problem is fixed. I think it's still a generally good feature though, and allows deploying the data service without it consuming emails to learn about new revisions, and is a step towards integrating some kind of way of notifying the data service to poll.
* Add support for incrementally tracking blocked buildsChristopher Baines2022-11-11
| | | | | | | | | This will hopefully provide a less expensive way of finding out if a scheduled build is probably blocked by other builds failing or being canceled. By working this out when the build events are recieved, it should be more feasible to include information about whether builds are likely blocked or not in various places (e.g. revision comparisons).
* Partition the package_derivations_by_guix_revision_range tableChristopher Baines2022-05-23
| | | | | | | | | | | | And create a proper git_branches table in the process. I'm hoping this will help with slow deletions from the package_derivations_by_guix_revision_range table in the case where there are lots of branches, since it'll separate the data for one branch from another. These migrations will remove the existing data, so rebuild-package-derivations-table will currently need manually running to regenerate it.
* Add the system module to Makefile.amChristopher Baines2021-04-23
|
* Add a /package/NAME pageChristopher Baines2021-03-14
| | | | | | This might be useful for working out when a non-master branch contains a newer version of a package, or someone has sent in a patch for a newer version already.
* Add a Prometheus metrics page, with some database metricsChristopher Baines2020-09-06
| | | | | The database size is growing, but it's hard to know what parts are growing the fastest. These metrics will hopefully help with understanding that.
* Split out querying of build servers and substitute serversChristopher Baines2020-05-03
| | | | | | These are related things, but somewhat separate. This change should make it easier to deal with changes regarding querying build servers, and querying substitute servers.
* Fix some tab issues in the Makefile.am fileChristopher Baines2020-03-20
|
* Add scripts for generating database dumpsChristopher Baines2020-03-02
|
* Make the test output more verboseChristopher Baines2020-02-27
|
* Add a new utils module, containing a with-time-logging syntax ruleChristopher Baines2020-02-24
|
* Add a page listing the available database dumpsChristopher Baines2020-02-22
|
* Fix some commentsChristopher Baines2020-02-16
| | | | Copied over from the Mumi code.
* Add a module to handle deleting dataChristopher Baines2020-02-15
| | | | | | | | This, along with the way of specifying which branches are processed is a way to manage the data stored within the Guix Data Service. This only goes so far, it doesn't delete derivations, but it does delete some of the information related to a revision.
* Start storing channel instance derivationsChristopher Baines2020-02-11
| | | | These are the ones that relate to Guix pull.
* Store information about system testsChristopher Baines2020-02-03
|
* Add a page to show the public key used to sign substitutesChristopher Baines2019-12-27
|
* 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.
* 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.
* Add a page for each signing keyChristopher Baines2019-12-12
|
* Add a new html-utils moduleChristopher Baines2019-12-12
| | | | To store code used for rendering HTML across multiple controllers.
* Begin to add support for importing narinfo filesChristopher Baines2019-11-30
| | | | | This commit adds the tables, as well as code to support extracting data from narinfo files.
* Add the build-server-token-seed.scm file to Makefile.amChristopher Baines2019-11-26
|
* Extract the builds page in to it's own set of modulesChristopher Baines2019-11-24
| | | | To allow for expanding it, without cluttering the root controller.
* Rework the builds and build_status tables as well as related codeChristopher Baines2019-11-24
| | | | | | | Allow for build status information to be submitted by POST request. This required some changes to the builds and build_status tables, as for example, the Cuirass build id may not be available, and the derivation may not be know yet, so just record the derivation file name.
* Add a script to help manage build serversChristopher Baines2019-11-23
| | | | | This computes and displays the tokens needed to send build events to the Guix Data Service.
* Add a new channel-news module, along with tables the relevant dataChristopher Baines2019-11-21
|
* Add missing files to the SOURCES list in Makefile.amChristopher Baines2019-10-18
|
* Sort the SOURCES in the Makefile.amChristopher Baines2019-10-18
|
* Don't automatically shutdown the test databaseChristopher Baines2019-10-11
| | | | | As this leaves a process running, it's better just to stop the database manually.
* Fix the environment variables in the check-with-tmp-database targetChristopher Baines2019-10-11
| | | | So that they're actually set for sqitch.
* Improve the check-with-tmp-database targetChristopher Baines2019-10-11
| | | | | To better manage the environment, and stop the database upon completion of the tests.
* Add a check-with-tmp-database targetChristopher Baines2019-10-08
| | | | | | | This is aimed at testing using pg_tmp, to create a temporary test database (and instance of PostgreSQL). This is both useful for testing all the migrations, but should also be useful for running the tests within the guix package.
* Remove non-existent test from Makefile.amChristopher Baines2019-10-01
|
* Add a new script to process emails in an mbox fileChristopher Baines2019-09-28
| | | | | This can be used with the mbox files for the guix-commits mailing list to add older emails in to the database.
* Hack building a HTML version of the README in to Makefile.amChristopher Baines2019-09-21
| | | | | This is to be able to serve a readable version of the README on the site, allowing those without Emacs to more easily read it.
* Fix the godir in Makefile.amChristopher Baines2019-09-21
| | | | I think the .go files should be in lib, rather than share.
* Improve the package and package-metadata modulesChristopher Baines2019-09-05
| | | | | | | Add tests around the package module, extract out the use of the inferior-package record assessors so that they aren't part of the tests, and switch across the package-metadata module to use insert-missing-data-and-return-all-ids.
* Store lint warnings in the databaseChristopher Baines2019-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 a process-job commandChristopher Baines2019-07-12
| | | | | | This allows easily processing an individual job by id. This may be useful to use manually, but also when processing jobs in parallel, as forking doesn't work well with the libpq library used by squee.
* Tweak the Makefile.am to install the right thingsChristopher Baines2019-06-08
| | | | | Install the assets and sqitch files, as they are needed. Remove the test related sources.
* Add a new test to cover some of the loading new revisions codeChristopher Baines2019-06-02
|
* Add some missing test files to Makefile.amChristopher Baines2019-06-02
|
* Store license information for packagesChristopher Baines2019-05-15
| | | | | | | | | | And display this on the package page. This uses a couple of new tables, and an additional field in the package_metadata table. Currently, the order of the licenses in the package definition isn't stored, as I'm not sure the order in the list is significant.
* Store and display the location of packagesChristopher Baines2019-05-13
| | | | | | | Store the location a package can be found at, and display this on the package page. If available, link off to the git repository containing the package.
* Remove the sha1_hash from the package_metadata tableChristopher Baines2019-05-12
| | | | | | | | I'm thinking about adding more fields to this table, and the sha1_hash values will make this tricker. Therefore, remove the value, and adjust the existing code to cope. This commit also adds a new test which coveres some of the changed functionality.
* Add a mock-inferior moduleChristopher Baines2019-05-12
| | | | This to help test code which uses the (guix inferior) module.
* Add a (tests driver) moduleChristopher Baines2019-05-12
| | | | | Using the test driver from build-aux/test-driver.scm, as this shows the test errors when tests fail.
* Add a new query-parameters moduleChristopher Baines2019-05-11
| | | | | | | | | The query parameters feed in to the results shown, but also forms on pages. Validation is important to avoid errors and security issues, but it's also important to provide appropriate feedback to the user. This module provides some utilities and structure around handling query parameters.