aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/git.c (follow)
Commit message (Collapse)AuthorAge
* use -std=c17 -WpedanticEgor Tensin2023-05-13
|
* add copyright noticesEgor Tensin2022-12-02
|
* log: refactoringEgor Tensin2022-09-08
|
* sanitize #include-sEgor Tensin2022-09-08
|
* fix macrosEgor Tensin2022-08-26
| | | | | | do { ... } while (0) is objectively better: https://stackoverflow.com/q/1067226/514684
* 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.