Buildkite Packages

Buildkite Packages manages artifacts and packages built from your Buildkite pipelines.

An introduction to packages

A package is a combination of metadata, configuration, and software that is prepared in a way that a package management program can use to properly and reliably install software and related configuration data on a computer. For example:

  • apt on Ubuntu
  • yum on RedHat Enterprise Linux
  • pip for Python packages
  • gem for RubyGems

Packages are useful because their:

  • Version information helps keep software up to date
  • Metadata offers visibility in what's installed to which locations and why
  • Software installations are reproducible in different environments.

Package creation tools

There are many tools for creating packages. Some of these tools are provided directly by Linux distributions, while many other third-party packaging tools are also available.

Some popular package creation tools include:

Some advanced package creation tools include:

  • Mock, a chroot-based system for building RPM packages in a clean room environment
  • pbuilder, a chroot-based system for building DEB packages in a clean room environment. Useful tips about pbuilder can also be found in its user manual
  • git-buildpackage, a set of scripts that can be used to build DEB packages directly from git repositories
  • fpm, a third-party tool that allows users to quickly and easily make a variety of packages (including RPM and DEB packages)
  • PackPack, a simple tool to build RPM and Debian packages from git repositories.

Learn more about Buildkite Packages in the Getting started guide.