Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | switch to egor@tensin.name | Egor Tensin | 2023-12-12 |
| | |||
* | implement a command to list runs | Egor Tensin | 2023-11-15 |
| | |||
* | sanitize #include-s | Egor Tensin | 2023-07-04 |
| | |||
* | move custom message parsing to a separate module | Egor Tensin | 2023-07-04 |
| | |||
* | storage: mark completed runs as such | Egor Tensin | 2023-07-04 |
| | |||
* | storage: requeue old runs from storage on startup | Egor Tensin | 2023-07-04 |
| | |||
* | sqlite: store new runs in SQLite | Egor Tensin | 2023-07-04 |
| | |||
* | STAILQ -> SIMPLEQ | Egor Tensin | 2023-06-09 |
| | |||
* | msg: strings, not words | Egor Tensin | 2023-05-15 |
| | |||
* | rework server-worker communication | Egor Tensin | 2023-05-15 |
| | | | | | | | | | | | | | | | | | | OK, this is a major rework. * tcp_server: connection threads are not detached anymore, the caller has to clean them up. This was done so that the server can clean up the threads cleanly. * run_queue: simple refactoring, run_queue_entry is called just run now. * server: worker threads are now killed when a run is assigned to a worker. * worker: the connection to server is no longer persistent. A worker sends "new-worker", waits for a task, closes the connection, and when it's done, sends the "complete" message and waits for a new task. This is supposed to improve resilience, since the worker-server connections don't have to be maintained while the worker is doing a CI run. | ||
* | ci_queue -> run_queue | Egor Tensin | 2023-05-13 |
Also, some minor refactoring. |