Gitlab where is config.toml

Viewed 7218

Im working on adding code quality to gitlab. one of the step requires making changes to config.toml.

I have .gitlab-ci.yml at root level of project repository.and pipeline picks up this file.

where do i define config.toml ? at root level or i need to create a new folder like /etc/gitlab-runner/config.toml

1 Answers

The config.toml file is what configures a runner. You wouldn't have one unless you're running your own gitlab-runners, in which case it would be in /etc/gitlab/config.toml on the host running the runner. More information on Gitlab Runner and running it yourself is available here.

Related