Skip to content

Commit

Permalink
Taskcluster: use servo-* cache names
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Oct 11, 2018
1 parent 61fe737 commit 960cb50
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions etc/taskcluster/decision_task.py
Expand Up @@ -249,13 +249,12 @@ def linux_build_task(name):
return (
linux_task(name)
# https://docs.taskcluster.net/docs/reference/workers/docker-worker/docs/caches
# FIMXE: move to servo-* cache names
.with_scopes("docker-worker:cache:cargo-*")
.with_scopes("docker-worker:cache:servo-*")
.with_caches(**{
"cargo-registry-cache": "/root/.cargo/registry",
"cargo-git-cache": "/root/.cargo/git",
"cargo-rustup": "/root/.rustup",
"cargo-sccache": "/root/.cache/sccache",
"servo-cargo-registry": "/root/.cargo/registry",
"servo-cargo-git": "/root/.cargo/git",
"servo-rustup": "/root/.rustup",
"servo-sccache": "/root/.cache/sccache",
})
.with_index_and_artifacts_expire_in(build_artifacts_expire_in)
.with_max_run_time_minutes(60)
Expand Down

0 comments on commit 960cb50

Please sign in to comment.