summaryrefslogtreecommitdiff
path: root/share/man/just-serve-config.5.md
AgeCommit message (Collapse)Author
2024-04-23just-serve-config.5: Add missing execution endpoint port in examplePaul Cristian Sarbu
2024-04-10Support stderr log-limit restriciton for serveKlaus Aehlig
As `just serve` is used like a daemon it can be desirable to restrict stderr, e.g., to only errors, while keeping a detailled log of the activity in a file.
2024-04-02just-serve-config(5): add an example of a configurationKlaus Aehlig
2024-03-20Add local launcher to just-serve configKlaus Aehlig
As just serve can simultaneously act as remote-execution endpoint, it has to accept in its configuration all the necessary information, in particular, the local launcher. Add it.
2023-12-19just-serve-config(5): add client credentialsKlaus Aehlig
The just-serve config already honors specific fields to obtain the information on how to authenticate to the remote-execution endpoint. However, those have not yet been described in the man page yet. Do this now.
2023-12-13just serve: allowing for tuning retry strategy in the configuration fileAlberto Sartori
While parsing the configuration file, if the key `"execution endpoint"` is present, the following three keys are evaluated as well: - "max-attempts" - "initial-backoff-seconds" - "max-backoff-seconds"
2023-12-06just serve: make tc write strategy configurableKlaus Aehlig
2023-12-05just-serve-config.5: Document options needed for remote buildsPaul Cristian Sarbu
2023-09-15just serve: add remote execution endpoint and --fetch-absent optionPaul Cristian Sarbu
The serve service will communicate with this endpoint when needed, as well as ensure artifacts it provides are synced with the remote execution CAS, if requested by the client. If just-mr is given the --fetch-absent option, it Always produce present roots irrespective of the 'absent' pragma. For Git repositories marked with the 'absent' pragma, first try to fetch any commit trees provided by the serve endpoint from the execution endpoint CAS, before reverting to a network fetch. Co-authored-by: Klaus Aehlig <klaus.aehlig@huawei.com> Co-authored-by: Alberto Sartori <alberto.sartori@huawei.com>
2023-09-13Document 'just serve' protocol and implementationPaul Cristian Sarbu