aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src (unfollow)
Commit message (Collapse)Author
2024-04-25add a target to build w/ -fanalyzerHEADmasterEgor Tensin
2023-12-30json: add the lib prefix to wrapper functionsEgor Tensin
It makes it easier to audit for non-wrapped json-c usage.
2023-12-30string: stpecpy -> string_appendEgor Tensin
2023-12-27json: factor out json_object_put into json_freeEgor Tensin
2023-12-12switch to egor@tensin.nameEgor Tensin
2023-11-15implement a command to list runsEgor Tensin
2023-11-12client: print the server responseEgor Tensin
2023-11-12json_rpc: add a routine to generate request IDsEgor Tensin
2023-11-12refactoringEgor Tensin
2023-07-28sanitize linked librariesEgor Tensin
2023-07-26process: portable exit code processingEgor Tensin
2023-07-19move valgrind.sh to scripts/Egor Tensin
2023-07-18net: don't copy data in struct bufEgor Tensin
2023-07-18process: preserve the exit code moreEgor Tensin
If the process is killed by a signal, preserve the exit code as it would be reported by $?.
2023-07-18json_rpc: removed unused routinesEgor Tensin
2023-07-18net: remove unused buf_* routinesEgor Tensin
2023-07-18switch to JSON-RPC as message formatEgor Tensin
Instead of the weird `struct msg` I had, I switched to the JSON-RPC format. It's basically the same, but has a well-defined semantics in case of errors.
2023-07-11test: add test for segfaulting CI scriptEgor Tensin
The C code leaked out of src/, so I moved .clang-format and some compile options to the root directory. Also, I'm starting to hit test execution limits; I'm going to limit the repositories used for stress testing.
2023-07-11sqlite: make some identifiers more readableEgor Tensin
2023-07-11sqlite: rename SQL schema variablesEgor Tensin
2023-07-10string: add a commentEgor Tensin
2023-07-10test: test long CI run outputEgor Tensin
It immediately exposed a horrible bug in net.c, which is now fixed.
2023-07-09store process output in SQLiteEgor Tensin
2023-07-08sqlite: SQL formattingEgor Tensin
2023-07-08test: verify that added runs are in the databaseEgor Tensin
And that they're marked as finished. It immediately exposed some concurrency bugs, so some locking has been fixed.
2023-07-07clang-format: don't break string literalsEgor Tensin
2023-07-07test: add some basic command-line usage testsEgor Tensin
2023-07-07support code coverage report generationEgor Tensin
2023-07-07server: fix a possible leakEgor Tensin
2023-07-07sqlite: minor refactoringEgor Tensin
2023-07-06storage_sqlite: avoid races when inserting reposEgor Tensin
Insert first, then query the ID. That way, it'll work even if there're other workers inserting new repos.
2023-07-06cmake: fix Valgrind runs with Clang buildsEgor Tensin
2023-07-05worker: actually stay offlineEgor Tensin
I don't know what I was thinking, but contrary to my intention, the worker stayed connected to the server all the time.
2023-07-05tcp_server: minor refactoringEgor Tensin
2023-07-05tcp_server: close client connectionsEgor Tensin
I kinda forgot that I'm supposed to clean up client connections, and they immediately blew up in my face.
2023-07-05command: dedupe the codeEgor Tensin
2023-07-05tcp_server: keep track of client threadsEgor Tensin
This is a major change, obviously; brought to me by Valgrind, which noticed that we don't actually clean up after cimple-client threads. For a more thorough explanation, please see the added comment in tcp_server.c.
2023-07-04sanitize #include-sEgor Tensin
2023-07-04worker: close the leftover descriptorEgor Tensin
Thanks, Valgrind! As a note: if I think that Valgrind reports a false positive, chances are, it's not.
2023-07-04move custom message parsing to a separate moduleEgor Tensin
2023-07-04storage_sqlite: refactoringEgor Tensin
2023-07-04sqlite: rename a columnEgor Tensin
2023-07-04storage: mark completed runs as suchEgor Tensin
2023-07-04storage: requeue old runs from storage on startupEgor Tensin
2023-07-04tcp_server: always clean up connection descriptorsEgor Tensin
2023-07-04sqlite: store new runs in SQLiteEgor Tensin
2023-07-04storage_sqlite: refactoringEgor Tensin
2023-07-04sqlite: add run status fieldEgor Tensin
2023-07-04fix a compiler warningEgor Tensin
2023-07-04appease clang-formatEgor Tensin