commit | 0edadc11513201758e18c4be7e8c9ec1be6cbc64 | [log] [tgz] |
---|---|---|
author | Jacek Centkowski <geminica.programs@gmail.com> | Wed Oct 09 11:55:36 2024 +0200 |
committer | Luca Milanesio <luca.milanesio@gmail.com> | Fri Oct 11 08:38:39 2024 +0000 |
tree | b63ab27d5f302d7665494a1c1c028fd078bbefa8 | |
parent | 80371806b0cf8a204a259c53bc3a5037f05c8d80 [diff] |
Upgrade Gerrit-CI to Jenkins 2.462.3 To fix CVE-2024-47803 vulnerability that was reported here: https://www.jenkins.io/security/advisory/2024-10-02/ Bug: Issue 372269623 Change-Id: I36f57410ce9886448cd545e121c001a0293b717d
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/