mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Taskcluster: use servo-* cache names
This commit is contained in:
parent
61fe737885
commit
960cb50ffd
1 changed files with 5 additions and 6 deletions
|
@ -249,13 +249,12 @@ def linux_build_task(name):
|
||||||
return (
|
return (
|
||||||
linux_task(name)
|
linux_task(name)
|
||||||
# https://docs.taskcluster.net/docs/reference/workers/docker-worker/docs/caches
|
# https://docs.taskcluster.net/docs/reference/workers/docker-worker/docs/caches
|
||||||
# FIMXE: move to servo-* cache names
|
.with_scopes("docker-worker:cache:servo-*")
|
||||||
.with_scopes("docker-worker:cache:cargo-*")
|
|
||||||
.with_caches(**{
|
.with_caches(**{
|
||||||
"cargo-registry-cache": "/root/.cargo/registry",
|
"servo-cargo-registry": "/root/.cargo/registry",
|
||||||
"cargo-git-cache": "/root/.cargo/git",
|
"servo-cargo-git": "/root/.cargo/git",
|
||||||
"cargo-rustup": "/root/.rustup",
|
"servo-rustup": "/root/.rustup",
|
||||||
"cargo-sccache": "/root/.cache/sccache",
|
"servo-sccache": "/root/.cache/sccache",
|
||||||
})
|
})
|
||||||
.with_index_and_artifacts_expire_in(build_artifacts_expire_in)
|
.with_index_and_artifacts_expire_in(build_artifacts_expire_in)
|
||||||
.with_max_run_time_minutes(60)
|
.with_max_run_time_minutes(60)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue