sccache 0.6.0

Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible, storing a cache in a remote storage using various cloud storage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# WebDAV

Set `SCCACHE_WEBDAV_ENDPOINT` to a webdav service endpoint to store cache in a webdav service. Set `SCCACHE_WEBDAV_KEY_PREFIX` to specify the key prefix of cache.

The webdav cache is compatible with:

- [Ccache HTTP storage backend]https://ccache.dev/manual/4.7.4.html#_http_storage_backend
- [Bazel Remote Caching]https://bazel.build/remote/caching.
- [Gradle Build Cache]https://docs.gradle.org/current/userguide/build_cache.html

Users can set `SCCACHE_WEBDAV_ENDPOINT` to those services directly.

## Credentials

Sccache is able to load credentials from the following sources:
- Set `SCCACHE_WEBDAV_USERNAME`/`SCCACHE_WEBDAV_PASSWORD` to specify the username/password pair for basic authentication.
- Set `SCCACHE_WEBDAV_TOKEN` to specify the token value for bearer token authentication.