* Add experimental concurrent cache support * chore: replace is-terminal with standard library (#2311) * prepare release 0.9.1 * Add support for caching target json specs for Rust compilation. (#2269) * Don't use CARGO_REGISTRIES_* configuration in hash keys (#2308) * fix: bring "cargo build -Zprofile" support back (#2306) * deps: Update cc * add test for #2299 * fix test_rlib_dep_reader_call failure when $CARGO_HOME isn't in the user's $HOME * Never cache the outer CUDA compilation (because `nvcc -E` can't be trusted). Always decompose via `nvcc --dryrun`, then cache and report the host compiler call as a CUDA compilation * Always use sccache's own jobserver * Adjust placement of crate dependencies and a comment Crates memmap2, object and shlex are not dist-only requirements. * Skip tests when needed features (gcs & s3) are disabled OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/sccache?expand=0&rev=72
29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
# This is where client toolchains will be stored.
|
|
# You should not need to change this as it is configured to work with systemd.
|
|
cache_dir = "/var/cache/sccache-builder/toolchains"
|
|
# The maximum size of the toolchain cache, in bytes.
|
|
# If unspecified the default is 10GB.
|
|
# toolchain_cache_size = 10737418240
|
|
# A public IP address and port that clients will use to connect to this builder.
|
|
public_addr = "127.0.0.1:10501"
|
|
# public_addr = "[::1]:10501"
|
|
|
|
# The URL used to connect to the scheduler (should use https, given an ideal
|
|
# setup of a HTTPS server in front of the scheduler)
|
|
scheduler_url = "https://127.0.0.1:10600"
|
|
|
|
[builder]
|
|
type = "overlay"
|
|
# The directory under which a sandboxed filesystem will be created for builds.
|
|
# You should not need to change this as it is configured to work with systemd.
|
|
build_dir = "/var/cache/sccache-builder/tmp"
|
|
# The path to the bubblewrap version 0.3.0+ `bwrap` binary.
|
|
# You should not need to change this as it is configured for a default SUSE install.
|
|
bwrap_path = "/usr/bin/bwrap"
|
|
|
|
[scheduler_auth]
|
|
type = "jwt_token"
|
|
# This will be generated by the `generate-jwt-hs256-server-token` command or
|
|
# provided by an administrator of the sccache cluster. See /etc/sccache/scheduler.conf
|
|
token = "token goes here"
|