Austin Seipp
Austin Seipp
This question was bound to come up but, basically, title. In the quest to add a package to the Nix `flake.nix` file in the repo, which would allow people to...
Consider the following parameter to the `download_file` call: ``` ctx.actions.download_file(sha1 = "deadbeef") ``` The `sha1` attribute has been superseded by attributes like `sha256`, but remains for backwards compatibility. In the...
Deno KV is a key-value store API for Deno that will be going stable in 2.0. I'd like it if the API was available to my Windmill scripts. Normally, KV...
When doing a command like `buck2 log replay --trace-id ...` it helps to be able to download previously created logs from users, automated CI, etc. This functionality exists within Meta,...
Previously, when using `ValidationInfo()` with a failure, it ends up turning out an awkward message that turns { "status": "failure", "message": "you failed the test!" } into "you failed the...
This also moves all the download/upload GH actions from v3 to v4; v3 is being shut down in November 2024. Tested on my fork, where `main` produced this: https://github.com/thoughtpolice/buck2/releases/tag/latest
Forward-port of patch 4 in , providing a clear piece of missing functionality: in the event that stdout or stderr were more than 50KiB of output when caching `local_only` actions,...
Forward port of part of , which implements code in the OSS path for putting results of actions marked `local_only = True` into the RBE `ActionCache`. For people actually using...
After writing a bunch of rules I keep coming back to a few things that I would really like to do in a raw actions context, with no help from...
While talking on Discord about a general idea of "How do I skip some tests that are slow", I came up with an idea I wanted to post here on...