PackPack - AnaNek/tarantool GitHub Wiki

PackPack is our tool to build RPM and Debian packages from git repository using Docker. Key features of PackPack are:

  • Fast reproducible builds using Docker containers
  • Semantic versioning based on annotated git tags
  • Support for all major Linux distributions as targets

Prerequisites

Install Docker using instructions from docker.com

Usage

Clean the git repository:

cd path/to/tarantool
git clean -f -x -d
git submodule foreach git clean -f -x -d

Build a package:

OS=centos DIST=6 packpack

That is it. See README.md in packpack/packpack repo for additional details.