No description
Find a file
Ken Dreyer 953bbba183 kojivmd: narrow error handling for missing VMs
lookupByName() could raise libvirt.libvirtError for many different
reasons (libvirt connection problems, etc).

If this kojivmd host does not have this VM available
(VIR_ERR_NO_DOMAIN), and we should log the "VM not available" message
and skip taking the task.

If the error is something else, this is unexpected, and we should raise
it in the logs so the administrator can see it at non-debug log levels.
2022-09-16 09:04:27 +02:00
builder Catch koji.AuthError and bail out 2022-08-17 10:49:41 +02:00
cli Order download tasks and download only first srpm 2022-08-25 13:33:23 +02:00
devtools update dockerfiles 2022-04-28 11:06:06 +02:00
docs doc: explain waitrepo tasks in vm channel 2022-09-16 09:01:28 +02:00
hub Use nextval function instead of query 'SELECT nextval' 2022-09-05 10:42:11 +02:00
koji fix flake8 errors 2022-08-29 15:03:05 +02:00
plugins proton: save messages when connection fails 2022-07-26 11:43:30 +02:00
tests Use nextval function instead of query 'SELECT nextval' 2022-09-05 10:42:11 +02:00
util Catch koji.AuthError and bail out 2022-08-17 10:49:41 +02:00
vm kojivmd: narrow error handling for missing VMs 2022-09-16 09:04:27 +02:00
www Fix dist-repo repo.json url 2022-09-12 15:45:34 +02:00
.coveragerc update .coveragerc to ignore p3 code 2021-05-25 11:44:54 +02:00
.coveragerc3 tests: fix coveragerc 2020-09-08 16:21:40 +02:00
.flake8 flake8: Ignore .tox 2020-09-08 16:20:19 +02:00
.gitignore Add koji.egg-info/ to .gitignore 2021-08-10 07:12:23 +03:00
Authors one last email test typo 2007-02-20 23:26:53 -05:00
COPYING update copyright 2014-10-28 23:54:21 -04:00
koji.next.md koji.next.md: drop RHEL 5 requirements 2018-11-14 12:16:13 -05:00
koji.spec Release notes koji 1.30 2022-08-29 09:37:47 +02:00
LGPL Initial code drop 2007-02-14 11:25:01 -05:00
Makefile basic security checks with bandit 2021-10-20 15:20:14 +02:00
README.md README: add koji-hs project 2021-08-26 10:40:26 +02:00
requirements.txt Run tests in virtualenvs using tox 2020-09-08 16:20:19 +02:00
runtests sort imports for other scripts 2019-12-12 11:00:58 +00:00
setup.py fix flake8 errors 2022-08-29 15:03:05 +02:00
test-requirements.txt Pytest instead of nose in unittest 2021-12-06 12:17:29 +01:00
tox.ini fix bandit env 2022-01-03 10:31:54 +01:00

koji - RPM building and tracking system

Koji is an RPM-based build system. The Fedora Project uses Koji for their build system, as do several other projects.

Koji's goal is to provide a flexible, secure, and reproducible way to build software.

Key features:

  • New buildroot for each build
  • Robust XML-RPC APIs for easy integration with other tools
  • Web interface with SSL and Kerberos authentication
  • Thin, portable command line client
  • Users can create local buildroots
  • Buildroot contents are tracked in the database
  • Versioned data

Communicate

Bugs/RFEs

If you have found a bug or would like to request a new feature, please report an issue in Pagure.

Download

The koji source code can be downloaded with git via:

git clone https://pagure.io/koji.git

You may browse code at https://pagure.io/koji

Archived releases can be found at https://pagure.io/koji/releases

Documentation

See: https://docs.pagure.org/koji/

  • Mock: The tool Koji uses to generate buildroots
  • Yum
  • Pungi: Use Pungi to "compose" Koji builds into highly customizable Yum repositories.
  • Koji Tools: Various utilities for Koji
  • Kojiji: Koji Java Interface
  • txkoji: Async interface to Koji, using Twisted
  • koji-hs: Koji Haskell Interface