debian-mirror-gitlab/doc/ci/caching/index.md

562 lines
18 KiB
Markdown
Raw Normal View History

2019-09-04 21:01:54 +05:30
---
2020-06-23 00:09:42 +05:30
stage: Verify
2021-09-04 01:27:46 +05:30
group: Pipeline Execution
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2019-09-04 21:01:54 +05:30
type: index, concepts, howto
---
2021-09-04 01:27:46 +05:30
# Caching in GitLab CI/CD
2018-04-04 21:44:52 +05:30
2021-09-04 01:27:46 +05:30
A cache is one or more files that a job downloads and saves. Subsequent jobs that use
the same cache don't have to download the files again, so they execute more quickly.
2018-04-04 21:44:52 +05:30
2021-09-04 01:27:46 +05:30
To learn how to define the cache in your `.gitlab-ci.yml` file,
see the [`cache` reference](../yaml/README.md#cache).
2018-04-04 21:44:52 +05:30
2021-09-04 01:27:46 +05:30
## How cache is different from artifacts
2018-04-04 21:44:52 +05:30
2021-09-04 01:27:46 +05:30
Use cache for dependencies, like packages you download from the internet.
Cache is stored where GitLab Runner is installed and uploaded to S3 if
[distributed cache is enabled](https://docs.gitlab.com/runner/configuration/autoscale.html#distributed-runners-caching).
2018-04-04 21:44:52 +05:30
2021-09-04 01:27:46 +05:30
- You can define it per job by using the `cache:` keyword. Otherwise it is disabled.
- You can define it per job so that:
- Subsequent pipelines can use it.
- Subsequent jobs in the same pipeline can use it, if the dependencies are identical.
- You cannot share it between projects.
2018-11-20 20:47:30 +05:30
2021-09-04 01:27:46 +05:30
Use artifacts to pass intermediate build results between stages.
Artifacts are generated by a job, stored in GitLab, and can be downloaded.
2021-02-22 17:27:13 +05:30
2021-09-04 01:27:46 +05:30
- You can define artifacts per job. Subsequent jobs in later stages of the same
pipeline can use them.
- You can't use the artifacts in a different pipeline.
2021-02-22 17:27:13 +05:30
2021-09-04 01:27:46 +05:30
Artifacts expire after 30 days unless you define an [expiration time](../yaml/README.md#artifactsexpire_in).
Use [dependencies](../yaml/README.md#dependencies) to control which jobs fetch the artifacts.
2020-01-01 13:55:28 +05:30
Both artifacts and caches define their paths relative to the project directory, and
can't link to files outside it.
2018-11-20 20:47:30 +05:30
2018-04-04 21:44:52 +05:30
## Good caching practices
2021-02-22 17:27:13 +05:30
To ensure maximum availability of the cache, when you declare `cache` in your jobs,
use one or more of the following:
2018-04-04 21:44:52 +05:30
2021-09-04 01:27:46 +05:30
- [Tag your runners](../runners/configure_runners.md#use-tags-to-limit-the-number-of-jobs-using-the-runner) and use the tag on jobs
2018-04-04 21:44:52 +05:30
that share their cache.
2021-09-04 01:27:46 +05:30
- [Use runners that are only available to a particular project](../runners/runners_scope.md#prevent-a-specific-runner-from-being-enabled-for-other-projects).
2019-09-04 21:01:54 +05:30
- [Use a `key`](../yaml/README.md#cachekey) that fits your workflow (for example,
2018-04-04 21:44:52 +05:30
different caches on each branch). For that, you can take advantage of the
2021-03-11 19:13:27 +05:30
[predefined CI/CD variables](../variables/README.md#predefined-cicd-variables).
2018-04-04 21:44:52 +05:30
2021-02-22 17:27:13 +05:30
For runners to work with caches efficiently, you must do one of the following:
2018-04-04 21:44:52 +05:30
2020-11-24 15:15:51 +05:30
- Use a single runner for all your jobs.
- Use multiple runners (in autoscale mode or not) that use
2018-04-04 21:44:52 +05:30
[distributed caching](https://docs.gitlab.com/runner/configuration/autoscale.html#distributed-runners-caching),
2020-11-24 15:15:51 +05:30
where the cache is stored in S3 buckets (like shared runners on GitLab.com).
- Use multiple runners (not in autoscale mode) of the same architecture that
2018-04-04 21:44:52 +05:30
share a common network-mounted directory (using NFS or something similar)
2021-02-22 17:27:13 +05:30
where the cache is stored.
2018-04-04 21:44:52 +05:30
Read about the [availability of the cache](#availability-of-the-cache)
to learn more about the internals and get a better idea how cache works.
2021-09-04 01:27:46 +05:30
### Share caches between jobs in the same branch
2018-04-04 21:44:52 +05:30
Define a cache with the `key: ${CI_COMMIT_REF_SLUG}` so that jobs of each
branch always use the same cache:
```yaml
cache:
key: ${CI_COMMIT_REF_SLUG}
```
2021-02-22 17:27:13 +05:30
This configuration is safe from accidentally overwriting the cache, but merge requests
get slow first pipelines. The next time a new commit is pushed to the branch, the
cache is re-used and jobs run faster.
2018-04-04 21:44:52 +05:30
To enable per-job and per-branch caching:
```yaml
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
```
2021-02-22 17:27:13 +05:30
To enable per-stage and per-branch caching:
2018-04-04 21:44:52 +05:30
```yaml
cache:
key: "$CI_JOB_STAGE-$CI_COMMIT_REF_SLUG"
```
2021-09-04 01:27:46 +05:30
### Share caches across jobs in different branches
2018-04-04 21:44:52 +05:30
2021-02-22 17:27:13 +05:30
To share a cache across all branches and all jobs, use the same key for everything:
2018-04-04 21:44:52 +05:30
```yaml
cache:
2018-11-20 20:47:30 +05:30
key: one-key-to-rule-them-all
2018-04-04 21:44:52 +05:30
```
2021-02-22 17:27:13 +05:30
To share caches between branches, but have a unique cache for each job:
2018-04-04 21:44:52 +05:30
```yaml
cache:
key: ${CI_JOB_NAME}
```
2021-09-04 01:27:46 +05:30
### Disable cache for specific jobs
2018-04-04 21:44:52 +05:30
2021-02-22 17:27:13 +05:30
If you have defined the cache globally, it means that each job uses the
2018-04-04 21:44:52 +05:30
same definition. You can override this behavior per-job, and if you want to
disable it completely, use an empty hash:
```yaml
job:
cache: {}
```
2021-02-22 17:27:13 +05:30
### Inherit global configuration, but override specific settings per job
2019-12-04 20:38:33 +05:30
You can override cache settings without overwriting the global cache by using
[anchors](../yaml/README.md#anchors). For example, if you want to override the
`policy` for one job:
```yaml
cache: &global_cache
2020-11-24 15:15:51 +05:30
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- public/
- vendor/
policy: pull-push
2019-12-04 20:38:33 +05:30
job:
cache:
# inherit all global cache settings
<<: *global_cache
# override the policy
policy: pull
```
2018-04-04 21:44:52 +05:30
For more fine tuning, read also about the
2019-07-07 11:18:12 +05:30
[`cache: policy`](../yaml/README.md#cachepolicy).
2018-04-04 21:44:52 +05:30
## Common use cases
2021-02-22 17:27:13 +05:30
The most common use case of caching is to avoid downloading content like dependencies
or libraries repeatedly between subsequent runs of jobs. Node.js packages,
PHP packages, Ruby gems, Python libraries, and others can all be cached.
2018-04-04 21:44:52 +05:30
2021-09-04 01:27:46 +05:30
For more examples, check out our [GitLab CI/CD templates](https://gitlab.com/gitlab-org/gitlab/-/tree/master/lib/gitlab/ci/templates).
2018-04-04 21:44:52 +05:30
2021-02-22 17:27:13 +05:30
### Cache Node.js dependencies
2018-04-04 21:44:52 +05:30
2021-02-22 17:27:13 +05:30
If your project is using [npm](https://www.npmjs.com/) to install the Node.js
2020-04-08 14:13:33 +05:30
dependencies, the following example defines `cache` globally so that all jobs inherit it.
2021-02-22 17:27:13 +05:30
By default, npm stores cache data in the home folder `~/.npm` but you
[can't cache things outside of the project directory](../yaml/README.md#cachepaths).
Instead, we tell npm to use `./.npm`, and cache it per-branch:
2018-04-04 21:44:52 +05:30
```yaml
#
2021-09-04 01:27:46 +05:30
# https://gitlab.com/gitlab-org/gitlab/-/tree/master/lib/gitlab/ci/templates/Nodejs.gitlab-ci.yml
2018-04-04 21:44:52 +05:30
#
image: node:latest
# Cache modules in between jobs
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
2020-07-28 23:09:34 +05:30
- .npm/
2018-04-04 21:44:52 +05:30
before_script:
2020-04-08 14:13:33 +05:30
- npm ci --cache .npm --prefer-offline
2018-04-04 21:44:52 +05:30
test_async:
script:
2020-07-28 23:09:34 +05:30
- node ./specs/start.js ./specs/async.spec.js
2018-04-04 21:44:52 +05:30
```
2021-09-04 01:27:46 +05:30
### Cache PHP dependencies
2018-04-04 21:44:52 +05:30
Assuming your project is using [Composer](https://getcomposer.org/) to install
the PHP dependencies, the following example defines `cache` globally so that
all jobs inherit it. PHP libraries modules are installed in `vendor/` and
are cached per-branch:
```yaml
#
2021-09-04 01:27:46 +05:30
# https://gitlab.com/gitlab-org/gitlab/-/tree/master/lib/gitlab/ci/templates/PHP.gitlab-ci.yml
2018-04-04 21:44:52 +05:30
#
image: php:7.2
# Cache libraries in between jobs
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
2020-07-28 23:09:34 +05:30
- vendor/
2018-04-04 21:44:52 +05:30
before_script:
2020-07-28 23:09:34 +05:30
# Install and run Composer
2021-02-22 17:27:13 +05:30
- curl --show-error --silent "https://getcomposer.org/installer" | php
2020-07-28 23:09:34 +05:30
- php composer.phar install
2018-04-04 21:44:52 +05:30
test:
script:
2020-07-28 23:09:34 +05:30
- vendor/bin/phpunit --configuration phpunit.xml --coverage-text --colors=never
2018-04-04 21:44:52 +05:30
```
2021-09-04 01:27:46 +05:30
### Cache Python dependencies
2018-04-04 21:44:52 +05:30
Assuming your project is using [pip](https://pip.pypa.io/en/stable/) to install
2019-12-21 20:55:43 +05:30
the Python dependencies, the following example defines `cache` globally so that
2020-04-22 19:07:51 +05:30
all jobs inherit it. Python libraries are installed in a virtual environment under `venv/`,
2018-04-04 21:44:52 +05:30
pip's cache is defined under `.cache/pip/` and both are cached per-branch:
```yaml
#
2021-09-04 01:27:46 +05:30
# https://gitlab.com/gitlab-org/gitlab/-/tree/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml
2018-04-04 21:44:52 +05:30
#
image: python:latest
# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
variables:
2020-11-24 15:15:51 +05:30
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
2018-04-04 21:44:52 +05:30
# Pip's cache doesn't store the python packages
# https://pip.pypa.io/en/stable/reference/pip_install/#caching
#
# If you want to also cache the installed packages, you have to install
# them in a virtualenv and cache it as well.
cache:
paths:
2018-12-13 13:39:08 +05:30
- .cache/pip
2018-04-04 21:44:52 +05:30
- venv/
before_script:
- python -V # Print out python version for debugging
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
test:
script:
2020-07-28 23:09:34 +05:30
- python setup.py test
- pip install flake8
- flake8 .
2018-04-04 21:44:52 +05:30
```
2021-09-04 01:27:46 +05:30
### Cache Ruby dependencies
2018-04-04 21:44:52 +05:30
Assuming your project is using [Bundler](https://bundler.io) to install the
gem dependencies, the following example defines `cache` globally so that all
jobs inherit it. Gems are installed in `vendor/ruby/` and are cached per-branch:
```yaml
#
2021-09-04 01:27:46 +05:30
# https://gitlab.com/gitlab-org/gitlab/-/tree/master/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml
2018-04-04 21:44:52 +05:30
#
2019-09-04 21:01:54 +05:30
image: ruby:2.6
2018-04-04 21:44:52 +05:30
# Cache gems in between builds
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- vendor/ruby
before_script:
2020-03-13 15:44:24 +05:30
- ruby -v # Print out ruby version for debugging
- bundle install -j $(nproc) --path vendor/ruby # Install dependencies into ./vendor/ruby
2018-04-04 21:44:52 +05:30
rspec:
script:
2020-07-28 23:09:34 +05:30
- rspec spec
2018-04-04 21:44:52 +05:30
```
2021-03-08 18:12:59 +05:30
If you have jobs that each need a different selection of gems, use the `prefix`
keyword in the global `cache` definition. This configuration generates a different
cache for each job.
For example, a testing job might not need the same gems as a job that deploys to
production:
```yaml
cache:
key:
files:
- Gemfile.lock
prefix: ${CI_JOB_NAME}
paths:
- vendor/ruby
test_job:
stage: test
before_script:
- bundle install --without production --path vendor/ruby
script:
- bundle exec rspec
deploy_job:
stage: production
before_script:
- bundle install --without test --path vendor/ruby
script:
- bundle exec deploy
```
2021-09-04 01:27:46 +05:30
### Cache Go dependencies
2020-04-22 19:07:51 +05:30
Assuming your project is using [Go Modules](https://github.com/golang/go/wiki/Modules) to install
Go dependencies, the following example defines `cache` in a `go-cache` template, that
any job can extend. Go modules are installed in `${GOPATH}/pkg/mod/` and
are cached for all of the `go` projects:
```yaml
.go-cache:
variables:
GOPATH: $CI_PROJECT_DIR/.go
before_script:
- mkdir -p .go
cache:
paths:
- .go/pkg/mod/
test:
image: golang:1.13
extends: .go-cache
script:
2020-07-28 23:09:34 +05:30
- go test ./... -v -short
2020-04-22 19:07:51 +05:30
```
2018-04-04 21:44:52 +05:30
## Availability of the cache
2021-02-22 17:27:13 +05:30
Caching is an optimization, but it isn't guaranteed to always work. You need to
2018-04-04 21:44:52 +05:30
be prepared to regenerate any cached files in each job that needs them.
2021-02-22 17:27:13 +05:30
After you have defined a [cache in `.gitlab-ci.yml`](../yaml/README.md#cache),
the availability of the cache depends on:
- The runner's executor type
- Whether different runners are used to pass the cache between jobs.
2018-04-04 21:44:52 +05:30
### Where the caches are stored
2021-02-22 17:27:13 +05:30
The runner is responsible for storing the cache, so it's essential
2018-04-04 21:44:52 +05:30
to know **where** it's stored. All the cache paths defined under a job in
`.gitlab-ci.yml` are archived in a single `cache.zip` file and stored in the
2020-11-24 15:15:51 +05:30
runner's configured cache location. By default, they are stored locally in the
machine where the runner is installed and depends on the type of the executor.
2018-04-04 21:44:52 +05:30
| GitLab Runner executor | Default path of the cache |
| ---------------------- | ------------------------- |
| [Shell](https://docs.gitlab.com/runner/executors/shell.html) | Locally, stored under the `gitlab-runner` user's home directory: `/home/gitlab-runner/cache/<user>/<project>/<cache-key>/cache.zip`. |
| [Docker](https://docs.gitlab.com/runner/executors/docker.html) | Locally, stored under [Docker volumes](https://docs.gitlab.com/runner/executors/docker.html#the-builds-and-cache-storage): `/var/lib/docker/volumes/<volume-id>/_data/<user>/<project>/<cache-key>/cache.zip`. |
2020-11-24 15:15:51 +05:30
| [Docker machine](https://docs.gitlab.com/runner/executors/docker_machine.html) (autoscale runners) | Behaves the same as the Docker executor. |
2018-04-04 21:44:52 +05:30
2021-09-04 01:27:46 +05:30
If you use cache and artifacts to store the same path in your jobs, the cache might
be overwritten because caches are restored before artifacts.
2018-04-04 21:44:52 +05:30
### How archiving and extracting works
2021-02-22 17:27:13 +05:30
This example has two jobs that belong to two consecutive stages:
2018-04-04 21:44:52 +05:30
```yaml
stages:
2020-07-28 23:09:34 +05:30
- build
- test
2018-04-04 21:44:52 +05:30
before_script:
2020-07-28 23:09:34 +05:30
- echo "Hello"
2018-04-04 21:44:52 +05:30
job A:
stage: build
script:
2020-07-28 23:09:34 +05:30
- mkdir vendor/
- echo "build" > vendor/hello.txt
2018-04-04 21:44:52 +05:30
cache:
key: build-cache
paths:
2020-07-28 23:09:34 +05:30
- vendor/
2018-04-04 21:44:52 +05:30
after_script:
2020-07-28 23:09:34 +05:30
- echo "World"
2018-04-04 21:44:52 +05:30
job B:
stage: test
script:
2020-07-28 23:09:34 +05:30
- cat vendor/hello.txt
2018-04-04 21:44:52 +05:30
cache:
key: build-cache
2021-01-29 00:20:46 +05:30
paths:
- vendor/
2018-04-04 21:44:52 +05:30
```
2021-02-22 17:27:13 +05:30
If you have one machine with one runner installed, and all jobs for your project
run on the same host:
2018-04-04 21:44:52 +05:30
2018-12-05 23:21:45 +05:30
1. Pipeline starts.
1. `job A` runs.
1. `before_script` is executed.
1. `script` is executed.
1. `after_script` is executed.
2018-04-04 21:44:52 +05:30
1. `cache` runs and the `vendor/` directory is zipped into `cache.zip`.
2019-10-12 21:52:04 +05:30
This file is then saved in the directory based on the
2020-11-24 15:15:51 +05:30
[runner's setting](#where-the-caches-are-stored) and the `cache: key`.
2018-12-05 23:21:45 +05:30
1. `job B` runs.
1. The cache is extracted (if found).
1. `before_script` is executed.
1. `script` is executed.
1. Pipeline finishes.
2018-04-04 21:44:52 +05:30
2021-02-22 17:27:13 +05:30
By using a single runner on a single machine, you don't have the issue where
`job B` might execute on a runner different from `job A`. This setup guarantees the
cache can be reused between stages. It only works if the execution goes from the `build` stage
to the `test` stage in the same runner/machine. Otherwise, the cache [might not be available](#cache-mismatch).
2018-04-04 21:44:52 +05:30
During the caching process, there's also a couple of things to consider:
- If some other job, with another cache configuration had saved its
cache in the same zip file, it is overwritten. If the S3 based shared cache is
used, the file is additionally uploaded to S3 to an object based on the cache
2021-02-22 17:27:13 +05:30
key. So, two jobs with different paths, but the same cache key, overwrites
2018-04-04 21:44:52 +05:30
their cache.
- When extracting the cache from `cache.zip`, everything in the zip file is
extracted in the job's working directory (usually the repository which is
2020-11-24 15:15:51 +05:30
pulled down), and the runner doesn't mind if the archive of `job A` overwrites
2018-04-04 21:44:52 +05:30
things in the archive of `job B`.
2021-02-22 17:27:13 +05:30
It works this way because the cache created for one runner
often isn't valid when used by a different one. A different runner may run on a
different architecture (for example, when the cache includes binary files). Also,
because the different steps might be executed by runners running on different
2018-04-04 21:44:52 +05:30
machines, it is a safe default.
### Cache mismatch
In the following table, you can see some reasons where you might hit a cache
mismatch and a few ideas how to fix it.
| Reason of a cache mismatch | How to fix it |
| -------------------------- | ------------- |
2020-11-24 15:15:51 +05:30
| You use multiple standalone runners (not in autoscale mode) attached to one project without a shared cache | Use only one runner for your project or use multiple runners with distributed cache enabled |
| You use runners in autoscale mode without a distributed cache enabled | Configure the autoscale runner to use a distributed cache |
2021-02-22 17:27:13 +05:30
| The machine the runner is installed on is low on disk space or, if you've set up distributed cache, the S3 bucket where the cache is stored doesn't have enough space | Make sure you clear some space to allow new caches to be stored. There's no automatic way to do this. |
2018-04-04 21:44:52 +05:30
| You use the same `key` for jobs where they cache different paths. | Use different cache keys to that the cache archive is stored to a different location and doesn't overwrite wrong caches. |
Let's explore some examples.
2019-09-04 21:01:54 +05:30
#### Examples
2018-04-04 21:44:52 +05:30
2020-11-24 15:15:51 +05:30
Let's assume you have only one runner assigned to your project, so the cache
2021-02-22 17:27:13 +05:30
is stored in the runner's machine by default.
2018-04-04 21:44:52 +05:30
2021-02-22 17:27:13 +05:30
Two jobs could cause caches to be overwritten if they have the same cache key, but
they cache a different path:
2018-04-04 21:44:52 +05:30
```yaml
stages:
2020-07-28 23:09:34 +05:30
- build
- test
2018-04-04 21:44:52 +05:30
job A:
stage: build
script: make build
cache:
key: same-key
paths:
2020-07-28 23:09:34 +05:30
- public/
2018-04-04 21:44:52 +05:30
job B:
stage: test
script: make test
cache:
key: same-key
paths:
2020-07-28 23:09:34 +05:30
- vendor/
2018-04-04 21:44:52 +05:30
```
2018-12-05 23:21:45 +05:30
1. `job A` runs.
1. `public/` is cached as cache.zip.
1. `job B` runs.
1. The previous cache, if any, is unzipped.
1. `vendor/` is cached as cache.zip and overwrites the previous one.
2021-02-22 17:27:13 +05:30
1. The next time `job A` runs it uses the cache of `job B` which is different
and thus isn't effective.
2018-04-04 21:44:52 +05:30
To fix that, use different `keys` for each job.
2020-11-24 15:15:51 +05:30
In another case, let's assume you have more than one runner assigned to your
2019-12-21 20:55:43 +05:30
project, but the distributed cache is not enabled. The second time the
pipeline is run, we want `job A` and `job B` to re-use their cache (which in this case
2021-02-22 17:27:13 +05:30
is different):
2018-04-04 21:44:52 +05:30
```yaml
stages:
2020-07-28 23:09:34 +05:30
- build
- test
2018-04-04 21:44:52 +05:30
job A:
stage: build
script: build
cache:
key: keyA
paths:
2020-07-28 23:09:34 +05:30
- vendor/
2018-04-04 21:44:52 +05:30
job B:
stage: test
script: test
cache:
key: keyB
paths:
2020-07-28 23:09:34 +05:30
- vendor/
2018-04-04 21:44:52 +05:30
```
2021-02-22 17:27:13 +05:30
Even if the `key` is different, the cached files might get "cleaned" before each
stage if the jobs run on different runners in the subsequent pipelines.
2018-04-04 21:44:52 +05:30
## Clearing the cache
2020-11-24 15:15:51 +05:30
Runners use [cache](../yaml/README.md#cache) to speed up the execution
2018-04-04 21:44:52 +05:30
of your jobs by reusing existing data. This however, can sometimes lead to an
inconsistent behavior.
To start with a fresh copy of the cache, there are two ways to do that.
### Clearing the cache by changing `cache:key`
All you have to do is set a new `cache: key` in your `.gitlab-ci.yml`. In the
2021-02-22 17:27:13 +05:30
next run of the pipeline, the cache is stored in a different location.
2018-04-04 21:44:52 +05:30
### Clearing the cache manually
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/41249) in GitLab 10.4.
2018-04-04 21:44:52 +05:30
2021-02-22 17:27:13 +05:30
If you want to avoid editing `.gitlab-ci.yml`, you can clear the cache
via the GitLab UI:
2018-04-04 21:44:52 +05:30
2018-12-05 23:21:45 +05:30
1. Navigate to your project's **CI/CD > Pipelines** page.
2020-11-24 15:15:51 +05:30
1. Click on the **Clear runner caches** button to clean up the cache.
2018-05-09 12:01:36 +05:30
2020-11-24 15:15:51 +05:30
![Clear runner caches](img/clear_runners_cache.png)
2018-05-09 12:01:36 +05:30
2021-02-22 17:27:13 +05:30
1. On the next push, your CI/CD job uses a new cache.
2019-09-04 21:01:54 +05:30
2021-04-29 21:17:54 +05:30
NOTE:
Each time you clear the cache manually, the [internal cache name](#where-the-caches-are-stored) is updated. The name uses the format `cache-<index>`, and the index increments by one each time. The old cache is not deleted. You can manually delete these files from the runner storage.
2019-09-04 21:01:54 +05:30
<!-- ## Troubleshooting
Include any troubleshooting steps that you can foresee. If you know beforehand what issues
one might have when setting this up, or when something is changed, or on upgrading, it's
important to describe those, too. Think of things that may go wrong and include them here.
This is important to minimize requests for support, and to avoid doc comments with
questions that you know someone might ask.
Each scenario can be a third-level heading, e.g. `### Getting error message X`.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->