sccache/client.example
xiaoguang wang 2f8ad18f4b - Update to version 0.8.2~1:
* Add experimental concurrent cache support
  * sccache: prepare new release
  * Update FreeBSD docs to refer to 14.1 (#2263)
  * build(deps): bump jobserver from 0.1.31 to 0.1.32 (#2255)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/sccache?expand=0&rev=68
2024-10-08 00:56:54 +00:00

23 lines
902 B
Plaintext

# This file should be copied to ~/.config/sccache/config for your client.
# You can debug client issues by starting the server with:
# SCCACHE_NO_DAEMON=1 RUST_LOG=info /home/william/.cargo/bin/sccache --dist-status
[dist]
# 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 = "http://x.x.x.x:10600"
# scheduler_url = "http://[::abcd]:10600"
# Used for mapping local toolchains to remote cross-compile toolchains. Empty in
# this example where the client and build server are both Linux.
toolchains = []
# Size of the local toolchain cache, in bytes (5GB here, 10GB if unspecified).
# toolchain_cache_size = 5368709120
# The location of the toolchain cache.
cache_dir = "/tmp/toolchains"
[dist.auth]
# This should match the `client_auth` section of the scheduler config.
type = "token"
token = "token here"