Scripts used for continuous integration builds of Gerrit

Clone this repo:
  1. 1a383f4 Allow progressive console output to work without reloads by Antonio Barone · 30 hours ago master
  2. 3561695 Build owners plugin on stable-3.11 by Luca Milanesio · 8 days ago
  3. 32f11ff Build zuul-results-summary for stable-3.11/3.12 using main branch by Paladox none · 6 weeks ago
  4. 27561a1 Build master branch directly for project-group-structure by Paladox none · 9 months ago
  5. c962c4a Build virtualhost module on stable-3.11 and stable-3.12 branches by Luca Milanesio · 4 weeks ago

Gerrit CI scripts

Providing jobs

This project uses Jenkins Jobs Builder [1] to generate jobs from yaml descriptor files.

To add new jobs reuse existing templates, defaults etc. as much as possible. E.g. adding a job to build an additional branch of a project may be as easy as adding the name of the branch to an existing project.

To ensure well readable yaml-files, use yamllint [2] to lint the yaml-files. Yamllint can be downloaded using Python Pip:

pip3 install --require-hashes yamllint

To run the linter, execute this command from the project's root directory:

yamllint -c yamllint-config.yaml jenkins/**/*.yaml

Yamllint will not fix detected issues itself.

[1] https://docs.openstack.org/infra/jenkins-job-builder/index.html [2] https://pypi.org/project/yamllint/