cachepot
cachepot copied to clipboard
cachepot is `sccache` with extra sec, which in turn is `ccache` with cloud storage
Bumps [bumpalo](https://github.com/fitzgen/bumpalo) from 3.8.0 to 3.12.0. Changelog Sourced from bumpalo's changelog. 3.12.0 Released 2023-01-17. Added Added the bumpalo::boxed::Box::bump and bumpalo::collections::String::bump getters to get the underlying Bump that a string or...
``` FROM mybuilder # has cachepot preinstalled ARG CARGO_PACKAGE ENV RUSTC_WRAPPER=/usr/local/cargo/bin/cachepot ENV CACHEPOT_DIR=/var/cache/cachepot WORKDIR /build COPY . /build RUN --mount=type=cache,target=$CACHEPOT_DIR \ cargo build --release --no-default-features --bin ${CARGO_PACKAGE} ``` ``` docker...
Hello. **Background** I'm doing a PoC with distributed build mode (different issues encountered that we had to _hack_ to be able to do a minimal PoC, but that's for the...
Hello everyone. I'm preparing a PoC for my current job using Cachepot distributed build mode but I have encountered an issue when setting up the Scheduler & Worker on different...