Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Don't hardcode the expected x-git-repo header value | Christopher Baines | 2020-01-11 |
| | | | | | 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. | ||
* | Delete unused assoc-ref-multiple function | Christopher Baines | 2020-01-10 |
| | |||
* | Use the build_servers_build_config table when querying build servers | Christopher Baines | 2020-01-05 |
| | | | | This allows configuing which systems a build server builds. | ||
* | Add a table to configure which build servers build what | Christopher Baines | 2020-01-05 |
| | |||
* | Add a basic page for build servers | Christopher Baines | 2020-01-05 |
| | |||
* | Add a couple of comments to select-outputs-without-known-nar-entries | Christopher Baines | 2020-01-05 |
| | |||
* | Remove -for-successful-builds from procedure name | Christopher Baines | 2020-01-05 |
| | | | | | 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). | ||
* | Make valid-systems quicker | Christopher Baines | 2020-01-05 |
| | | | | | In the future, it would be good to pull this from the database again, but in some way which is really quick. | ||
* | Don't hardcode the system and target for the derivation history page | Christopher Baines | 2020-01-05 |
| | |||
* | Extract out the derivation-history rendering code | Christopher Baines | 2020-01-05 |
| | |||
* | Fix the help text on the derivation outputs page | Christopher Baines | 2020-01-04 |
| | |||
* | Implement the search query input on the derivation outputs page | Christopher Baines | 2020-01-04 |
| | |||
* | Support the search query input on the revision derivations page | Christopher Baines | 2020-01-04 |
| | |||
* | Fix the help text on the revision derivations page | Christopher Baines | 2020-01-04 |
| | |||
* | Fix some missing arguments to view-revision-derivations | Christopher Baines | 2020-01-04 |
| | |||
* | Add a function to search for derivations in a revision | Christopher Baines | 2020-01-04 |
| | |||
* | Drop bottom margin of the dl's on the revision derivations page | Christopher Baines | 2020-01-04 |
| | | | | This makes the table display better. | ||
* | Add missing headings to the revision derivations page table | Christopher Baines | 2020-01-04 |
| | |||
* | Remove the outputs from the query behind the revision derivations | Christopher Baines | 2020-01-04 |
| | | | | As that data is now unused. | ||
* | Add a revision header and link to the package reproducibility page | Christopher Baines | 2020-01-04 |
| | | | | | To make it easier to get back to the revision page, as well as setting the content more in context. | ||
* | Add a revision header and link on the revision builds page | Christopher Baines | 2020-01-04 |
| | | | | | To make it easier to get back to the revision page, as well as setting the page content in context. | ||
* | Add more timing and debugging output to the load process | Christopher Baines | 2020-01-04 |
| | | | | To help identify what's taking the most time. | ||
* | Fix the table layout on the derivation history page | Christopher Baines | 2020-01-03 |
| | |||
* | Add a #:loop? option to backfill-derivation-source-file-nars | Christopher Baines | 2020-01-03 |
| | |||
* | Fix some instability in the lint warnings page results | Christopher Baines | 2020-01-02 |
| | | | | The ordering could flip around, so fix it better. | ||
* | Bring back the old table header style | Christopher Baines | 2020-01-02 |
| | | | | | The reset.css stylesheet led to this behaviour, so override Bootstrap here to bring it back. | ||
* | Remove a workaround put in for list styling | Christopher Baines | 2020-01-02 |
| | | | | | This was useful with the reset.css stylesheet, but now that has been removed, remove this too. | ||
* | Fix a few list styling issues | Christopher Baines | 2020-01-02 |
| | |||
* | Remove the reset.css stylesheet | Christopher Baines | 2020-01-02 |
| | | | | | | 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. | ||
* | Better split up the comparision functionality | Christopher Baines | 2020-01-02 |
| | | | | | | | | | | | 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. | ||
* | Make it possible to specify the batch size | Christopher Baines | 2019-12-31 |
| | | | | In backfill-derivation-source-file-nars. | ||
* | Switch to using package-supported-systems, not the transitive one | Christopher Baines | 2019-12-31 |
| | | | | | | 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. | ||
* | Improve generating derivations for foreign architectures | Christopher Baines | 2019-12-31 |
| | | | | | | | 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. | ||
* | Display details for the derivation source files | Christopher Baines | 2019-12-30 |
| | | | | If the nar file is available. | ||
* | Add a function to backfill missing derivation source file nars | Christopher Baines | 2019-12-30 |
| | | | | | | | 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. | ||
* | Improve entity handling in the sxml module | Christopher Baines | 2019-12-30 |
| | | | | | This is useful as stexi->shtml uses *ENTITY* so handling this here means that the HTML output for texinfo is better. | ||
* | Create an index on the hash component of the store path | Christopher Baines | 2019-12-29 |
| | | | | For derivation_source_files. | ||
* | Rework insert-derivation-sources to use a helper function | Christopher Baines | 2019-12-29 |
| | | | | This means it returns ids properly. | ||
* | Serve narinfo files for derivation sources | Christopher Baines | 2019-12-29 |
| | |||
* | Move rendering narinfo responses out of the main controller function | Christopher Baines | 2019-12-29 |
| | | | | In preparation for also handling derivation source files. | ||
* | Serve nar files for the derivation source files | Christopher Baines | 2019-12-29 |
| | |||
* | Generate and store nars for derivation source files | Christopher Baines | 2019-12-29 |
| | | | | This'll allow serving nars for these derivation source files. | ||
* | Add a new table to nars for derivation source files | Christopher Baines | 2019-12-28 |
| | | | | This will allow serving the nars for derivation source files. | ||
* | Change the language around reproducibility/matching outputs | Christopher Baines | 2019-12-27 |
| | | | | | | | | It's more accurate to describe the specifics of the relevant data here through terms like "matching" and "not matching", as a statement that something built reproducibility needs to be made alongside the test conditions. So just say that build outputs matched, or didn't match, as this is more descriptive of the data available. | ||
* | Fix the help text on the jobs page | Christopher Baines | 2019-12-27 |
| | |||
* | Add a page to show the public key used to sign substitutes | Christopher Baines | 2019-12-27 |
| | |||
* | Change indentation in the nar-controller parameters | Christopher Baines | 2019-12-27 |
| | |||
* | Add a link to the derivations page | Christopher Baines | 2019-12-27 |
| | | | | From the revision page. | ||
* | Link to the versions page from the latest revision package page | Christopher Baines | 2019-12-27 |
| | |||
* | Link to the derivation history page from the branch package page | Christopher Baines | 2019-12-27 |
| |