Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | storage: mark completed runs as such | Egor Tensin | 2023-07-04 |
| | |||
* | appease clang-format | Egor Tensin | 2023-07-04 |
| | |||
* | show git hash with --version | Egor Tensin | 2023-06-30 |
| | | | | Also, use cmake's configure_file to build string constants in. | ||
* | 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. | ||
* | add a default SQLite database path | Egor Tensin | 2023-04-29 |
| | |||
* | rename commands | Egor Tensin | 2023-04-27 |
| | |||
* | add copyright notices | Egor Tensin | 2022-12-02 |
| | |||
* | update command names | Egor Tensin | 2022-08-28 |
| | |||
* | docker: shorten command values | Egor Tensin | 2022-08-28 |
| | |||
* | add some code | Egor Tensin | 2022-08-23 |
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. |