{"id":20590818,"url":"https://github.com/unpublished/jenkins-job-builder","last_synced_at":"2026-04-21T01:02:19.366Z","repository":{"id":83525987,"uuid":"326035677","full_name":"Unpublished/jenkins-job-builder","owner":"Unpublished","description":null,"archived":false,"fork":false,"pushed_at":"2024-03-06T10:45:10.000Z","size":4959,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-06T13:44:59.250Z","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/Unpublished.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-01T18:39:25.000Z","updated_at":"2021-12-28T17:26:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"e1cfa3ca-6c5e-4fd5-92ba-6149b450d815","html_url":"https://github.com/Unpublished/jenkins-job-builder","commit_stats":null,"previous_names":[],"tags_count":58,"template":false,"template_full_name":null,"purl":"pkg:github/Unpublished/jenkins-job-builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Unpublished%2Fjenkins-job-builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Unpublished%2Fjenkins-job-builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Unpublished%2Fjenkins-job-builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Unpublished%2Fjenkins-job-builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Unpublished","download_url":"https://codeload.github.com/Unpublished/jenkins-job-builder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Unpublished%2Fjenkins-job-builder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32072323,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T21:26:33.338Z","status":"ssl_error","status_checked_at":"2026-04-20T21:26:22.081Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-16T07:38:20.030Z","updated_at":"2026-04-21T01:02:19.346Z","avatar_url":"https://github.com/Unpublished.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* https://jenkins-job-builder.readthedocs.io/en/latest/\n\nDevelopers\n----------\nBug report:\n\n* https://storyboard.openstack.org/#!/project/723\n\nRepository:\n\n* https://opendev.org/jjb/jenkins-job-builder\n\nCloning::\n\n    git clone https://opendev.org/jjb/jenkins-job-builder.git\n\nInstall pre-commit from https://pre-commit.com/#intro in order to run some\nminimal testing on your commits.\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.opendev.org\n\nPlease do not submit GitHub pull requests, they will be automatically closed.\n\nMailing list:\n\n* https://groups.google.com/forum/#!forum/jenkins-job-builder\n\nIRC:\n\n* ``#openstack-jjb`` on OFTC\n\nMore details on how you can contribute is available on our wiki at:\n\n* https://docs.opendev.org/opendev/infra-manual/latest/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 py38\n\nUnit tests could be run in parallel, using pytest-parallel pytest plugin::\n\n    tox -e py38 -- --workers=auto\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://www.jenkins.io/\n.. _YAML: https://yaml.org\n.. _JSON: http://json.org/\n.. _pep8: https://pypi.org/project/pep8\n.. _pyflakes: https://pypi.org/project/pyflakes\n.. _tox: https://tox.wiki/en/latest/\n.. _libyaml: https://pyyaml.org/wiki/LibYAML\n.. _pip: https://pypi.org/project/pip\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funpublished%2Fjenkins-job-builder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funpublished%2Fjenkins-job-builder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funpublished%2Fjenkins-job-builder/lists"}