Commit message (Collapse) | Author | ||
---|---|---|---|
2023-07-04 | storage: mark completed runs as such | Egor Tensin | |
2023-07-04 | appease clang-format | Egor Tensin | |
2023-06-30 | show git hash with --version | Egor Tensin | |
Also, use cmake's configure_file to build string constants in. | |||
2023-05-15 | rework server-worker communication | Egor Tensin | |
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. | |||
2023-05-13 | ci_queue -> run_queue | Egor Tensin | |
Also, some minor refactoring. | |||
2023-04-29 | add a default SQLite database path | Egor Tensin | |
2023-04-27 | rename commands | Egor Tensin | |
2022-12-02 | add copyright notices | Egor Tensin | |
2022-08-28 | update command names | Egor Tensin | |
2022-08-28 | docker: shorten command values | Egor Tensin | |
2022-08-23 | add some code | Egor Tensin | |
A basic client-server app, the client sends commands as an array of strings. Hopefully I didn't mess up, and hopefully it'll be useful. |