| Commit message (Expand) | Author | Age |
* | Don't retry canceling builds if they're already canceled | Christopher Baines | 2024-06-10 |
* | Validate derivation names for builds•••As I've managed to submit derivation names with \r in.
| Christopher Baines | 2024-06-09 |
* | Don't ignore missing_inputs setup failures when allocating•••As if there is an issue substituting the input, this can cause the build to
fail to start over and over again, potentially retrying downloading the inputs
over and over again.
This will mean that the setup failures will need clearing manually before the
build can be tried again, but this is probably a good thing.
| Christopher Baines | 2024-06-07 |
* | Avoid using select and use poll instead•••I don't trust select, as I think I'm seeing it make blocking read calls. I
don't know if that's coming from here, but better to just avoid it.
| Christopher Baines | 2024-06-07 |
* | Support controlling adding timestamps to the log output•••So this can be turned off when the shepherd is adding the timestamps.
| Christopher Baines | 2024-06-06 |
* | Strip whitespace from derivation names•••As this can trip things up.
| Christopher Baines | 2024-06-06 |
* | Support customising the default-build-missing-inputs-hook behaviour | Christopher Baines | 2024-06-06 |
* | Retry more when substituting derivations•••And don't use the no substitutes fallback.
| Christopher Baines | 2024-06-06 |
* | Always use a thread to read derivations | Christopher Baines | 2024-06-06 |
* | Close the uncompressed output port explicitly•••As this ensures the data is written. This resolves some issues with bytes
missing from the end of nars.
| Christopher Baines | 2024-06-05 |
* | Make imports from (guix build utils) explicit | Christopher Baines | 2024-06-05 |
* | Omit none as a compression in narinfos•••To match the guix publish behaviour.
| Christopher Baines | 2024-06-05 |
* | Enable recompressing nars in the publish hook•••The implementation is intended to be generic, but the new default behaviour
either keeps the lzip compressed nar, or if the compressed nar isn't much
smaller than the compressed one, decompresses it.
This also changes the API for the post-publish-hook and
combined-post-publish-hook, since they now get called with a list of narinfos,
rather than a list of narinfos and files.
| Christopher Baines | 2024-05-19 |
* | Use threads for reading derivations•••As it is quite slow on bayfront at least.
| Christopher Baines | 2024-05-15 |
* | Work around the broken with-store/non-blocking | Christopher Baines | 2024-05-15 |
* | Use just one cooperative thread•••To try and simplify things.
| Christopher Baines | 2024-05-15 |
* | Order messages to the writer thread channel•••So that they're processed in a first come first served manor.
| Christopher Baines | 2024-05-15 |
* | Handled fetching details of canceled builds | Christopher Baines | 2024-05-15 |
* | Export port timeout error predicates | Christopher Baines | 2024-05-15 |
* | Use with-store/non-blocking from guix•••As it opens a non-blocking connection, rather than doing a blocking handshake
then making the socket non-blocking.
| Christopher Baines | 2024-05-14 |
* | Fix the no-fibers-wait in with-fibers-port-timeouts | Christopher Baines | 2024-05-14 |
* | Make the worker thread timeout a parameter | Christopher Baines | 2024-05-12 |
* | Avoid starting new builds when low on disk space | Christopher Baines | 2024-05-12 |
* | Increase the timeout for substituting derivations | Christopher Baines | 2024-05-10 |
* | Fix the port timeout exceptions | Christopher Baines | 2024-05-10 |
* | Remove with-timeout•••As it's now unused.
| Christopher Baines | 2024-05-10 |
* | Use with-port-timeouts when recompressing log files•••To avoid using alarm.
| Christopher Baines | 2024-05-10 |
* | Avoid with-store/non-blocking•••As I'm seeing exceptions around here, but I think the syntax rule may be
hiding exactly where.
| Christopher Baines | 2024-05-10 |
* | Show backtraces for exceptions when substituting derivations | Christopher Baines | 2024-05-10 |
* | Fix missing newline when showing builds | Christopher Baines | 2024-04-29 |
* | Have the port monitoring fiber use non blocking sockets | Christopher Baines | 2024-04-28 |
* | Use port timeouts when substituting derivations | Christopher Baines | 2024-04-28 |
* | Create the pid file earlier•••As this might avoid shepherd failing to start the service.
| Christopher Baines | 2024-04-28 |
* | Don't use open-connection-for-uri from Guix•••As it's timeout approach doesn't work with suspendable ports.
| Christopher Baines | 2024-04-28 |
* | Fix for guile-lib v0.2.8•••I'm not sure quite what's changed, but it seems like the way the
formatter is being called has changed in a backwards incompatible way.
To maintain compatability with both older and newer versions of
guile-lib, accept the formatter being called with extra arguments, and
just look at the first three.
| Christopher Baines | 2024-04-23 |
* | Use -O1 to avoid Guile bug(s)•••As compiling at -O2 with guile-next (3.0.9-0.db7efa5) gives errors like:
internal error: unexpected kwarg syms ((#:level level #f)) (t803)
| Christopher Baines | 2024-04-23 |
* | Tweak running sqitch | Christopher Baines | 2024-04-22 |
* | Use the new process metrics exporter | Christopher Baines | 2024-04-17 |
* | Guard against signaling the error condition not working•••As this seems to happen when the process runs out of file descriptors.q
| Christopher Baines | 2024-04-17 |
* | Fix the sleep-impl argument to retry-on-error | Christopher Baines | 2024-03-16 |
* | Remove the now unused queue builds script•••This has mostly been replaced by the bffe.
| Christopher Baines | 2024-03-16 |
* | Add a definition of retry-on-error which uses the fibers sleep | Christopher Baines | 2024-03-15 |
* | Remove the core-guile-sleep variable•••As this is unnecessary.
| Christopher Baines | 2024-03-15 |
* | Remove mutexes from the upload monitoring•••Instead, store the state in the work queue.
| Christopher Baines | 2024-03-13 |
* | Actually use non-blocking ports for network requests•••In most places at least.
| Christopher Baines | 2024-03-02 |
* | Allow setting the dynamic auth token via environment variable | Christopher Baines | 2024-02-13 |
* | Show tags with build show | Christopher Baines | 2024-02-13 |
* | Expose information about setup failures | Christopher Baines | 2024-02-08 |
* | Expose the derived priorities for builds | Christopher Baines | 2024-01-30 |
* | Add inbuilt port monitoring•••There seems to be some issue which can lead to the client and agent ports no
longer being listened on. I've got no idea how to track this down, so just try
and monitor for it and kill the process if it happens.
| Christopher Baines | 2024-01-19 |