debian-mirror-gitlab/doc/ci/enable_or_disable_ci.md

64 lines
2.6 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: howto
---
2021-09-30 23:02:18 +05:30
# How to enable or disable GitLab CI/CD **(FREE)**
2021-11-11 11:23:49 +05:30
To use GitLab CI/CD, you need:
2019-09-04 21:01:54 +05:30
2021-09-30 23:02:18 +05:30
- A valid [`.gitlab-ci.yml`](yaml/index.md) file present at the root directory
2019-09-04 21:01:54 +05:30
of your project.
2021-11-11 11:23:49 +05:30
- A [runner](runners/index.md) ready to run jobs.
2019-09-04 21:01:54 +05:30
2021-03-11 19:13:27 +05:30
You can read our [quick start guide](quick_start/index.md) to get you started.
2021-11-11 11:23:49 +05:30
If you use an external CI/CD server like Jenkins or Drone CI, you can
disable GitLab CI/CD to avoid conflicts with the commits status
API.
2021-11-11 11:23:49 +05:30
GitLab CI/CD is enabled by default on all new projects. You can:
2021-11-11 11:23:49 +05:30
- Disable GitLab CI/CD [under each project's settings](#enable-cicd-in-a-project).
- Set GitLab CI/CD to be [disabled in all new projects on an instance](../administration/cicd.md).
2019-09-04 21:01:54 +05:30
2021-11-11 11:23:49 +05:30
If you disable GitLab CI/CD in a project:
2021-11-11 11:23:49 +05:30
- The **CI/CD** item in the left sidebar is removed.
- The `/pipelines` and `/jobs` pages are no longer available.
- Existing jobs and pipelines are not deleted. Re-enable CI/CD to access them again.
2019-12-21 20:55:43 +05:30
2021-11-11 11:23:49 +05:30
The project or instance settings do not enable or disable pipelines run in an
[external integration](../user/project/integrations/overview.md#integrations-listing).
## Enable CI/CD in a project
2021-10-27 15:23:28 +05:30
To enable or disable GitLab CI/CD pipelines in your project:
2019-12-21 20:55:43 +05:30
2021-10-27 15:23:28 +05:30
1. On the top bar, select **Menu > Projects** and find your project.
1. On the left sidebar, select **Settings > General**.
1. Expand **Visibility, project features, permissions**.
1. In the **Repository** section, turn on or off **CI/CD** as required.
2020-01-01 13:55:28 +05:30
2021-02-22 17:27:13 +05:30
**Project visibility** also affects pipeline visibility. If set to:
2020-01-01 13:55:28 +05:30
- **Private**: Only project members can access pipelines.
- **Internal** or **Public**: Pipelines can be set to either **Only Project Members**
2021-10-27 15:23:28 +05:30
or **Everyone With Access** by using the dropdown box.
2019-12-21 20:55:43 +05:30
Press **Save changes** for the settings to take effect.
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. -->