2020-10-16 23:08:53 -04:00
---
stage: Verify
2021-05-26 23:10:55 -04:00
group: Testing
2020-11-26 01:09:20 -05:00
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
2020-10-16 23:08:53 -04:00
type: reference, howto
---
2021-05-26 23:10:55 -04:00
# Pipeline artifacts **(FREE)**
2020-10-16 23:08:53 -04:00
2021-11-03 20:12:36 -04:00
Pipeline artifacts are files created by GitLab after a pipeline finishes. Pipeline artifacts are
different to [job artifacts ](job_artifacts.md ) because they are not explicitly managed by
`.gitlab-ci.yml` definitions.
2020-10-16 23:08:53 -04:00
2021-11-03 20:12:36 -04:00
Pipeline artifacts are used by the [test coverage visualization feature ](../../user/project/merge_requests/test_coverage_visualization.md )
to collect coverage information. It uses the [`artifacts: reports` ](../yaml/index.md#artifactsreports ) CI/CD keyword.
2020-10-16 23:08:53 -04:00
## Storage
2021-11-03 20:12:36 -04:00
Pipeline artifacts are saved to disk or object storage. They count towards a project's [storage usage quota ](../../user/usage_quotas.md#storage-usage-quota ).
The **Artifacts** on the Usage Quotas page is the sum of all job artifacts and pipeline artifacts.
2020-10-16 23:08:53 -04:00
2021-04-29 11:10:07 -04:00
## When pipeline artifacts are deleted
2021-11-03 20:12:36 -04:00
Pipeline artifacts from:
2021-06-10 02:10:08 -04:00
2021-11-03 20:12:36 -04:00
- The latest pipeline are kept forever.
- Pipelines superseded by a newer pipeline are deleted seven days after their creation date.
2021-06-10 02:10:08 -04:00
2021-11-03 20:12:36 -04:00
It can take up to two days for GitLab to delete pipeline artifacts from when they are due to be
deleted.