| Commit message (Expand) | Author | Age |
* | Increase the retry times for submitting builds | Christopher Baines | 2020-06-20 |
* | Fix handling of --system= for the agent process | Christopher Baines | 2020-06-19 |
* | Remove left over debugging | Christopher Baines | 2020-06-19 |
* | Handle the system more explicitly when fetching builds•••Also support fetching builds for specific systems from the Guix Data Service.
| Christopher Baines | 2020-06-19 |
* | Extract out system and target from package-derivations-for-commit | Christopher Baines | 2020-06-19 |
* | Retry requests to the Guix Data Service | Christopher Baines | 2020-06-19 |
* | Print out a message when waiting in the queue builds script | Christopher Baines | 2020-06-02 |
* | Increase the retry delay in the queue builds script | Christopher Baines | 2020-06-02 |
* | Use the %processed-commits-file variable in place of the string•••In the queue builds script.
| Christopher Baines | 2020-06-02 |
* | Fix the missing tags argument in the queue builds script | Christopher Baines | 2020-06-01 |
* | Support adding tags to builds | Christopher Baines | 2020-05-31 |
* | Use one thread for each type of hook event•••This will allow some parallel processing of hook events, at least those of
different types.
| Christopher Baines | 2020-05-25 |
* | Support showing blocking builds•••This is useful to find builds that have failed, and in failing blocked other
builds from being attempted.
| Christopher Baines | 2020-05-22 |
* | Include retrying when submitting builds | Christopher Baines | 2020-05-20 |
* | Send requests directly to the coordinator for submitting builds | Christopher Baines | 2020-05-20 |
* | Fetch substitutes in a separate channel•••As I'm guessing this could block the thread for fibers.
| Christopher Baines | 2020-05-19 |
* | Fix the build show missing inputs functionality | Christopher Baines | 2020-05-19 |
* | Make it possible to show builds for an output | Christopher Baines | 2020-05-19 |
* | Support agents processing builds in parallel | Christopher Baines | 2020-05-17 |
* | Convert the client actions to happen over HTTP•••There were a few issues with the previous approach, I was concerned about
trying to write to the SQLite database from two processes, it's already
segfaulting occasionally when accessing it from just one. Additionally, the
client actions were already doing things that should happen in the coordinator
process, like allocating builds.
I'm trying to not turn this in to a web app, but not doing very well. Although
having this information and these actions available over the network does make
it possible to build a web app frontend, which I've had in mind.
| Christopher Baines | 2020-05-17 |
* | Use a variable | Christopher Baines | 2020-05-17 |
* | Change how triggering build allocations works•••Associate this with the coordinator, rather than having the logic in the agent
communication code.
| Christopher Baines | 2020-05-17 |
* | Open up more fibers possibilities in the coordinator•••I'm looking to listen for client instructions ("build this", ...) maybe on a
UNIX socket, which looks to be possible with fibers, but doing this at the
same time as using a network socket for agent messaging requires more access
than run-server from the fibers web server module currently allows.
To get around this, patch the fibers web server run-server procedure to do
less, and do that instead in the guix-build-coordinator. This is somewhat
similar to what I think Cuirass does to allow it to do more with fibers.
This required messing with the current-fiber parameter in a couple more places
around threads, I'm not really sure why that problem has occurred now. This
current-fiber parameter issue should be resolved in the next fibers release.
One good thing with these changes is some behaviours not related to agent
communication, like triggering build allocation on startup have been moved out
of the agent communication code.
| Christopher Baines | 2020-05-17 |
* | Switch the command line options for the agent communication config•••To make it clear this is what it's for. This makes it easier to allow other
ways of communicating with agent processes in the future, as well as making it
easier to set out how to also listen for client commands, which I'm thinking
about now.
| Christopher Baines | 2020-05-16 |
* | Set a default allocation strategy | Christopher Baines | 2020-05-10 |
* | Pass the Guix Data Service instance in for substitutes•••When submitting builds.
| Christopher Baines | 2020-05-09 |
* | Support passing substitute-urls when submitting a build | Christopher Baines | 2020-05-09 |
* | Rework the ensure-all-related-derivations-have-builds option•••This was resulting in duplicate builds for the same output, as that's not what
it was guarding against, but I think that was my intention... Anyway this
should actually only result in builds being created for outputs that are
required.
| Christopher Baines | 2020-05-09 |
* | Fix submitting builds•••This was broken with the API change to the coordinator.
| Christopher Baines | 2020-05-09 |
* | Make it possible to select the allocation strategy | Christopher Baines | 2020-05-08 |
* | Make a record type for the build coordinator•••This is already useful to pass around the datastore, hooks and metrics
registry, and will become more useful to pass around the allocator to use.
| Christopher Baines | 2020-05-08 |
* | Support providing different substitute URLs for different purposes•••The agent looks to substitute the derivation, and also substitute inputs, so
allow providing different substitute URLs for each of these purposes. This can
make substituting faster in the case where you have a different source of
substitutes for derivations and non-derivation items.
| Christopher Baines | 2020-05-08 |
* | Fix the finished output for missing inputs | Christopher Baines | 2020-05-01 |
* | Extend guix-build-coordinator show build to work with outputs•••It will show the builds for the output. This commit also adds more information
in to the output.
| Christopher Baines | 2020-05-01 |
* | Add guix-build-coordinator build show ...•••A way of getting information out about a build.
| Christopher Baines | 2020-05-01 |
* | Stop if the build command fails | Christopher Baines | 2020-04-30 |
* | Add --ignore-if-build-for-outputs-exists | Christopher Baines | 2020-04-30 |
* | Start tracking the duration of a few datastore functions | Christopher Baines | 2020-04-28 |
* | Make it possible to pass in substitute-urls to the agent•••So that you don't have to just use the daemon's defaults.
| Christopher Baines | 2020-04-26 |
* | Add a script to fetch builds from the Guix Data Service•••As that is an easy way to find things to build.
| Christopher Baines | 2020-04-25 |
* | Add options suited for providing substitutes•••Allow specifying build priority, although the allocator currently doesn't use
this. Add --defer-allocation to allow inserting lots of builds without
spending time re-computing the allocation for each one. Add
--ensure-all-related-derivations-have-builds to make it easy to have a
derivation, and all related derivations built at least once. Add
--ignore-if-build-for-derivation-exists to make it easy to avoid building
derivations again if that isn't the intention.
| Christopher Baines | 2020-04-25 |
* | Add a hook to handle missing inputs•••That submits new build jobs to build these missing inputs if appropriate.
This means that you can tell the coordinator to build something, and it will
automatically attempt to build the dependencies if they're missing.
| Christopher Baines | 2020-04-17 |
* | Implement a couple of basic hooks•••This allows configurable code to be executed when builds succeed or fail.
| Christopher Baines | 2020-04-16 |
* | Implement more of an agent sending a status update | Christopher Baines | 2020-04-10 |
* | Print out the host and port when running a HTTP server | Christopher Baines | 2020-04-10 |
* | Support creating passwords for agents•••This should support generating the passwords off the value stored in the
database, and the secret key base value, but that can be implemented later.
| Christopher Baines | 2020-04-10 |
* | Add the ability to list agents | Christopher Baines | 2020-04-10 |
* | Support creating agents•••By running guix-build-coordinator agent new
| Christopher Baines | 2020-04-10 |
* | Start implementing the HTTP agent messaging features | Christopher Baines | 2020-04-10 |
* | Call the generic datastore-update method•••Rather than running Sqitch for PostgreSQL manually.
| Christopher Baines | 2020-04-10 |