Contribute to Omnibus GitLab

Common enhancement tasks

Common maintenance tasks

Build and test your enhancement

Submit your enhancement for review

Merge request guidelines

If you are working on a new feature or an issue which doesn’t have an entry on the Omnibus GitLab issue tracker, it is always a better idea to create an issue and mention that you will be working on it as this will help to prevent duplication of work. Also, others may be able to provide input regarding the issue, which can help you in your task.

It is preferred to make your changes in a branch named \<issue number>-\<description> so that merging the request will automatically close the specified issue.

A good merge request is expected to have the following components, based on their applicability:

  1. Full merge request description explaining why this change was needed
  2. Code for implementing feature/bugfix
  3. Tests, as explained in Writing Tests
  4. Documentation explaining the change
  5. If merge request introduces change in user facing configuration, update to gitlab.rb.template
  6. Changelog entry to inform about the change, if necessary.
note
Ensure shared runners are enabled for your fork in order for our automated tests to run:
  1. Go to Settings -> CI/CD.
  2. Expand Runners settings.
  3. If shared runners are not enabled, click on the button labeled Enable shared Runners.

Write tests

Any change in the internal cookbook also requires specs. Apart from testing the specific feature/bug, it would be greatly appreciated if the submitted Merge Request includes more tests. This is to ensure that the test coverage grows with development.

When in rush to fix something (such as a security issue, or a bug blocking the release), writing specs can be skipped. However, an issue to implement the tests must be created and assigned to the person who originally wrote the code.

To run tests, execute the following command. You may have to run bundle install before running it:

bundle exec rspec