Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-02-24 | just-lock: Fix parsing of optional container fields | Paul Cristian Sarbu | |
...with not-None defaults. While there, fix wrong command environment set in 'git tree' imports. | |||
2025-02-24 | just-lock design: Clarify env handling for 'generic' source | Paul Cristian Sarbu | |
2025-02-21 | ByteStreamClient: Return ArtifactBlob from Read. | Maksim Denisov | |
2025-02-21 | ByteStreamUtils: Simplify ReadRequest and WriteRequest | Maksim Denisov | |
2025-02-21 | ByteStreamClient: Use ByteStreamUtils::ReadRequest internally only. | Maksim Denisov | |
2025-02-21 | ByteStreamClient: Use ArtifactBlob in Write | Maksim Denisov | |
2025-02-21 | ByteStreamClient: Use IncrementalReader for writing | Maksim Denisov | |
2025-02-21 | IncrementalReader: Test reading from memory | Maksim Denisov | |
2025-02-21 | IncrementalReader: Support reading from memory | Maksim Denisov | |
2025-02-21 | BytestreamServer: Use IncrementalReader | Maksim Denisov | |
2025-02-21 | HashFunction: Use IncrementalReader | Maksim Denisov | |
2025-02-21 | FileSystemManager: Use IncrementalReader | Maksim Denisov | |
2025-02-21 | LocalCasReader: Use IncrementalReader | Maksim Denisov | |
2025-02-21 | IncrementalReader: Test reading from files | Maksim Denisov | |
2025-02-21 | Implement IncrementalReader | Maksim Denisov | |
2025-02-21 | Implement InPlaceVisitor | Maksim Denisov | |
2025-02-20 | Separate off id generation to a separate library | Klaus Aehlig | |
... and rename appropriately to reflect contents more precisely than the generic "common". This separation also disentangles dependencies a bit. | |||
2025-02-20 | just-lock(1): Document --clone option | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Add test for cloning 'git tree' repositories | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Add support for cloning 'git tree' repositories | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Add test for cloning archive-related repositories | Paul Cristian Sarbu | |
...such as 'archive', 'zip', 'foreign file', and 'distdir'. | |||
2025-02-20 | just-lock: Add support for cloning 'distdir' repositories | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Add support for cloning 'foreign file' repositories | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Add support for cloning 'archive' and 'zip' repositories | Paul Cristian Sarbu | |
For these repositories the clone will contain only the subdir of the resolved unpacked archive. | |||
2025-02-20 | just-lock: Add test for cloning 'git' repositories | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Add support for cloning 'git' repositories | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Add test for cloning 'file' repositories | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Initial implementation of --clone option | Paul Cristian Sarbu | |
This option stages locally the sources (i.e., workspace root) of a target repository found by following a list of bindings from a known starting repository. The final configuration will keep during deduplication the names of each starting repository and each target repository, with the output configuration updated to point to these local clones. Precomputed repositories cannot be cloned. Implementation is split in multiple commits. This commit contains the main logic for handling cloning. Currently only support for 'file' repositories is implemented. The code structure allows it to be subsequently extended to all other repository types. | |||
2025-02-20 | just-lock design: Clarify wording of --clone option | Paul Cristian Sarbu | |
- specify that what is cloned is the workspace root of the target repository - disambiguate what is referred to as the 'start' and 'target' repository | |||
2025-02-20 | just-lock: Add utility doing own parsing before fetching archive | Paul Cristian Sarbu | |
Preparatory commit for implementation of '--clone' option. | |||
2025-02-20 | just-lock: Add option to set a just binary to use | Paul Cristian Sarbu | |
2025-02-20 | just-lock: Support special pragma for plain imports | Paul Cristian Sarbu | |
Marking a source repository 'as plain' means that the whole source repository tree will get imported as a repository type corresponding to the source type. In this case, additional pragmas than those supported by the inndividual imports might need to be set. Solve this by supporting the just-mr-style 'pragma' field also in the source description, for all sources also accepting the 'as plain' field. Currently support only the 'special' pragma. Document change and add test for plain imports that checks this feature. | |||
2025-02-20 | just-lock: Improve handling of pragmas in 'repos' import description | Paul Cristian Sarbu | |
In particular, any transitive 'file'-type repository will inherit any given '{to_git: true}' pragma in the import description objects. Note that this technically can only happen for transitive 'file' repositories imported from a 'file' source, so in all other cases such a pragma would not have any effect. Document change and extend the import from 'file' source test to check this feature. | |||
2025-02-20 | just-import-git: Fix missing inherited pragmas | Paul Cristian Sarbu | |
Update CHANGELOG accordingly. | |||
2025-02-20 | just-lock: Fix missing inherited pragmas | Paul Cristian Sarbu | |
Transitive 'file'-type repositories should inherit any pragmas suported by the new repository type they are rewritten as. Extend import tests to avoid regressing on this issue in the future. | |||
2025-02-20 | just-lock-config(5): Fix wrong referenced man page name | Paul Cristian Sarbu | |
2025-02-19 | BazelNetwork: Optimize DoUploadBlobs | Maksim Denisov | |
...by removing an extra std::vector of iterators. Instead, remove elements directly from std::unordered_set. | |||
2025-02-19 | CommonApi: Remove GetMissingArtifactsInfo | Maksim Denisov | |
2025-02-19 | CommonUploadBlobTree: Use BackMap to get missing digests | Maksim Denisov | |
2025-02-19 | GitApi: Use BackMap to get missing digests | Maksim Denisov | |
2025-02-19 | LocalApi: Use BackMap to get missing digests | Maksim Denisov | |
2025-02-19 | BazelApi: Use BackMap to get missing digests | Maksim Denisov | |
2025-02-19 | BazelApi: Create BackMap in ::RetrieveToCas | Maksim Denisov | |
and drop precreated info_map. | |||
2025-02-19 | BackMap: Implement GetReferences | Maksim Denisov | |
2025-02-19 | ApiBundle: Remove HashFunction. | Maksim Denisov | |
And ensure every user obtains HashFunction from corresponding IExecutionApi | |||
2025-02-19 | IExecutionApi: Return supported HashFunction::Type | Maksim Denisov | |
2025-02-19 | Store HashFunction by value | Maksim Denisov | |
Although references give an additional information about ownership, they introduce additional design difficulties. | |||
2025-02-19 | BazelApi: Move bazel_action and bazel_response to "bazel_api" | Maksim Denisov | |
2025-02-19 | BazelApi: rename library "bazel" => "bazel_api" | Maksim Denisov | |
2025-02-19 | LocalApi: rename library "local" => "local_api" | Maksim Denisov | |