summaryrefslogtreecommitdiff
path: root/src/jobs.c
Commit message (Collapse)AuthorAgeFilesLines
* jobs: scheduled -> requestedsinanmohd2024-07-281-1/+1
|
* solver_greedy/solver_report: remove redundant datasinanmohd2024-07-251-1/+0
|
* jobs: job_cost -> job_cost_recursivesinanmohd2024-07-241-1/+1
|
* evanix: --cache-status -> --check-cache-statussinanmohd2024-07-201-2/+2
|
* evanix: add --cache-status flagsinanmohd2024-07-191-5/+12
|
* jobs: don't force-recursesinanmohd2024-07-121-2/+1
| | | | the eval will take huge amount of resources in large repos like nixpkgs.
* jobs: fix cache locality checksinanmohd2024-07-111-7/+7
|
* jobs/job_cost: count the job itselfsinanmohd2024-07-111-1/+1
|
* job/job_cost: initsinanmohd2024-07-111-0/+14
|
* solver/solver_report: initsinanmohd2024-07-111-0/+1
|
* jobs/job_read_cache: switch to nix-build dry runsinanmohd2024-07-101-29/+77
|
* util/vpopen: support for reading stderrsinanmohd2024-07-091-2/+2
|
* build: record the nix-eval-jobs path in the binary, rm the wrapperSomeoneSerge2024-07-071-2/+14
|
* solver_greedy: initsinanmohd2024-07-031-2/+0
|
* queue/queue_ancestors_rm: initsinanmohd2024-07-021-0/+1
|
* jobs/stale_set: initsinanmohd2024-07-021-0/+12
|
* solver_util: initsinanmohd2024-06-291-9/+10
|
* job: "transitive" -> "!scheduled"SomeoneSerge2024-06-281-1/+1
|
* comments: evanix.cSomeone Serge2024-06-281-1/+1
|
* build: set out link based on attr namesinanmohd2024-06-281-5/+29
|
* evanix: add --system flagsinanmohd2024-06-281-0/+11
|
* jobs: set --force-recursesinanmohd2024-06-281-1/+2
|
* jobs: check cache status of derivationssinanmohd2024-06-251-1/+38
|
* evanix: init arg parsingsinanmohd2024-06-241-9/+12
|
* htab: clean upsinanmohd2024-06-231-3/+3
|
* htab: initsinanmohd2024-06-231-3/+2
|
* queue: merge matching derivations in queuesinanmohd2024-06-211-2/+2
|
* jobs: improve the DAG implementationsinanmohd2024-06-201-19/+79
| | | | maintain a record of parent nodes for efficient node removal
* jobs: use pointer arrays for outputs and dependenciessinanmohd2024-06-201-13/+76
| | | | | we still get simpler deletions because the order of the array is not important so we can pop the last item and insert it in place of the deleted one
* jobs: more lazy memory allocationsinanmohd2024-06-191-76/+68
|
* c: improve memory managementsinanmohd2024-06-161-8/+6
|
* queue: recover from nix eval errorssinanmohd2024-06-141-23/+33
|
* util/json_streaming_read: properly handle EOFsinanmohd2024-06-131-1/+1
|
* jobs/job_read_inputdrvs: avoid inserting NULL pointer to dlistsinanmohd2024-06-131-2/+1
|
* jobs/job_read_inputdrvs: make use of the cJSON_ArrayForEach iteratorsinanmohd2024-06-131-16/+10
|
* src/jobs/jobs_init: null terminate *argv[]sinanmohd2024-06-131-1/+2
|
* src/jobs/jobs_init: pass name via *argvsinanmohd2024-06-121-0/+1
|
* src/jobs/job_read: refactorsinanmohd2024-06-111-82/+128
|
* src/jobs/job_read: read outputssinanmohd2024-06-111-2/+35
|
* src/jobs: clean upsinanmohd2024-06-101-5/+10
|
* src/jobs: initsinanmohd2024-06-091-0/+178
implement data structures and json unmarshalling