sccache/client.example
William Brown 280b72c6f4 - explicitly depend on cargo to pull in latest compiler revision
- Update to version 0.8.1~31:
  * Add experimental concurrent cache support
  * build(deps): bump quinn-proto from 0.11.3 to 0.11.8 (#2254)
  * build(deps): bump which from 6.0.0 to 6.0.3 (#2252)
  * Disable "warnings as errors" flag for CL preprocessing (#2251)
  * Add windows arm64 to the CI (#2243)
  * build(deps): bump log from 0.4.20 to 0.4.22 (#2218)
  * feat: Bump opendal to 0.48.0 (#2240)
  * deps: update winapi-util (#2236)
  * refactor: use windows-sys instead of winapi (#2233)
  * build(deps): bump vmactions/freebsd-vm from 1.0.7 to 1.0.8 (#2219)
  * Add cache hit percentage to stats (#2211)
  * Add custom zstd compression level (#2199)
  * Remove the heapsize feature
  * Add lost feature status
  * Update OpenDAL for fixing #2220
  * build(deps): bump reqwest from 0.12.4 to 0.12.5 (#2215)
  * build(deps): bump uuid from 1.7.0 to 1.9.0 (#2213)
  * Update CI version of macOS
  * build(deps): bump zstd from 0.13.0 to 0.13.1
  * build(deps): bump async-trait from 0.1.77 to 0.1.80
  * build(deps): bump anyhow from 1.0.81 to 1.0.86
  * Format toml
  * refactor: Bump OpenDAL to 0.47
  * Remove ref_env
  * Fix clippy
  * Fix clippy
  * refactor: Bump MSRV to 1.75 for async in trait
  * Log when preprocessor cache cannot be used (#2197)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/sccache?expand=0&rev=66
2024-09-12 00:41:32 +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"