{"id":21423848,"url":"https://github.com/ossystems/jenkins-job-builder","last_synced_at":"2025-07-27T04:46:24.587Z","repository":{"id":24433177,"uuid":"27834765","full_name":"OSSystems/jenkins-job-builder","owner":"OSSystems","description":"Takes simple descriptions of Jenkins jobs in YAML format, and uses them to configure it","archived":false,"fork":false,"pushed_at":"2018-03-28T13:21:48.000Z","size":4686,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-19T18:09:21.360Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OSSystems.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-12-10T19:01:15.000Z","updated_at":"2023-07-08T09:48:06.000Z","dependencies_parsed_at":"2022-08-22T23:10:54.917Z","dependency_job_id":null,"html_url":"https://github.com/OSSystems/jenkins-job-builder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/OSSystems/jenkins-job-builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSSystems%2Fjenkins-job-builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSSystems%2Fjenkins-job-builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSSystems%2Fjenkins-job-builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSSystems%2Fjenkins-job-builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OSSystems","download_url":"https://codeload.github.com/OSSystems/jenkins-job-builder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSSystems%2Fjenkins-job-builder/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267300854,"owners_count":24066270,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-22T21:18:29.847Z","updated_at":"2025-07-27T04:46:24.504Z","avatar_url":"https://github.com/OSSystems.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"README\n======\n\nJenkins Job Builder takes simple descriptions of Jenkins_ jobs in YAML_ or JSON_\nformat and uses them to configure Jenkins. You can keep your job descriptions in\nhuman readable text format in a version control system to make changes and\nauditing easier. It also has a flexible template system, so creating many\nsimilarly configured jobs is easy.\n\nTo install::\n\n    $ pip install --user jenkins-job-builder\n\nOnline documentation:\n\n* http://docs.openstack.org/infra/jenkins-job-builder/\n\nDevelopers\n----------\nBug report:\n\n* https://storyboard.openstack.org/#!/project/723\n\nRepository:\n\n* https://git.openstack.org/cgit/openstack-infra/jenkins-job-builder\n\nCloning::\n\n    git clone https://git.openstack.org/openstack-infra/jenkins-job-builder\n\nA virtual environment is recommended for development.  For example, Jenkins\nJob Builder may be installed from the top level directory::\n\n    $ virtualenv .venv\n    $ source .venv/bin/activate\n    $ pip install -r test-requirements.txt -e .\n\nPatches are submitted via Gerrit at:\n\n* https://review.openstack.org/\n\nPlease do not submit GitHub pull requests, they will be automatically closed.\n\nMore details on how you can contribute is available on our wiki at:\n\n* http://docs.openstack.org/infra/manual/developers.html\n\nWriting a patch\n---------------\n\nWe ask that all code submissions be pep8_ and pyflakes_ clean.  The\neasiest way to do that is to run tox_ before submitting code for\nreview in Gerrit.  It will run ``pep8`` and ``pyflakes`` in the same\nmanner as the automated test suite that will run on proposed\npatchsets.\n\nWhen creating new YAML components, please observe the following style\nconventions:\n\n* All YAML identifiers (including component names and arguments)\n  should be lower-case and multiple word identifiers should use\n  hyphens.  E.g., \"build-trigger\".\n* The Python functions that implement components should have the same\n  name as the YAML keyword, but should use underscores instead of\n  hyphens. E.g., \"build_trigger\".\n\nThis consistency will help users avoid simple mistakes when writing\nYAML, as well as developers when matching YAML components to Python\nimplementation.\n\nUnit Tests\n----------\n\nUnit tests have been included and are in the ``tests`` folder. Many unit\ntests samples are included as examples in our documentation to ensure that\nexamples are kept current with existing behaviour. To run the unit tests,\nexecute the command::\n\n    tox -e py34,py27\n\n* Note: View ``tox.ini`` to run tests on other versions of Python,\n  generating the documentation and additionally for any special notes\n  on running the test to validate documentation external URLs from behind\n  proxies.\n\nInstalling without setup.py\n---------------------------\n\nFor YAML support, you will need libyaml_ installed.\n\nMac OS X::\n\n    $ brew install libyaml\n\nThen install the required python packages using pip_::\n\n    $ sudo pip install PyYAML python-jenkins\n\n.. _Jenkins: https://jenkins.io/\n.. _YAML: http://www.yaml.org/\n.. _JSON: http://json.org/\n.. _pep8: https://pypi.python.org/pypi/pep8\n.. _pyflakes: https://pypi.python.org/pypi/pyflakes\n.. _tox: https://testrun.org/tox\n.. _libyaml: http://pyyaml.org/wiki/LibYAML\n.. _pip: https://pypi.python.org/pypi/pip\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fossystems%2Fjenkins-job-builder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fossystems%2Fjenkins-job-builder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fossystems%2Fjenkins-job-builder/lists"}