aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/file.c (follow)
Commit message (Collapse)AuthorAge
* store process output in SQLiteEgor Tensin2023-07-09
|
* tcp_server: always clean up connection descriptorsEgor Tensin2023-07-04
|
* file: readlink(2) doesn't null-terminateEgor Tensin2023-06-28
| | | | Thanks, valgrind.
* sanitize #include-sEgor Tensin2023-06-13
|
* add {file,net}_close as a wrapper to close(2)Egor Tensin2023-06-09
|
* fix realloc usageEgor Tensin2023-05-29
| | | | | | | | Remember, this is always a mistake: ptr = realloc(ptr, size); You still need to free() the original ptr if realloc fails.
* file: rework file_readEgor Tensin2023-05-17
| | | | | It now increases the buffer size exponentially until it finishes reading the file.
* best practices & coding style fixesEgor Tensin2023-05-13
| | | | | | | | * I don't really need to declare all variables at the top of the function anymore. * Default-initialize variables more. * Don't set the output parameter until the object is completely constructed.
* cmd_line: read executable name from /proc/self/exeEgor Tensin2023-04-29
|
* add copyright noticesEgor Tensin2022-12-02
|
* log: refactoringEgor Tensin2022-09-08
|
* fix Alpine buildsEgor Tensin2022-08-28
|
* make compilers happierEgor Tensin2022-08-28
|
* worker: capture process outputEgor Tensin2022-08-26
|
* add some more codeEgor Tensin2022-08-26
This adds a basic "worker" program. You can now do something like ./server & ./worker & ./client ci_run URL REV and the server should pass a message to worker, after which it should clone the repository at URL, checkout REV, and try to run the CI script. It's extremely unfinished: I need to sort out the graceful shutdown, how the server manages workers, etc.