Opinionated make library providing a containerized toolchain and helpers for determinism and batteries-included workflows on most any git project.
Go to file
Lance Vick b33b2a98ac
git mtime updates skip non-existant paths
2023-10-10 15:18:24 -07:00
scripts namespace toolchain commands, add dist caching and git-restore-mtime support 2023-09-21 10:55:57 -07:00
Dockerfile cache debian artifacts in fetch directory 2023-06-15 23:23:10 -07:00
Makefile git mtime updates skip non-existant paths 2023-10-10 15:18:24 -07:00
README.md make dependecy and doc fixes 2023-06-16 12:58:05 -07:00

README.md

Toolchain

https://codeberg.org/distrust/toolchain

About

A library of opinionated make functions targeting projects that either need deterministic builds, or a deterministic toolchain shared across all who use a project.

A dev of a Toolchain enabled project should never need to have anything on their host system installed but docker, and git. Everything else will be provided via a Docker container.

Debian currently has the highest reproducibility score of any major Linux distribution, and as such it is the chosen base for Toolchain.

This was built for Distrust projects, and some of our clients. It is unlikely to meet the needs of everyone. We suggest including this in your project as a git subtree, so you can make your own changes, but also pull in changes from us as desired.

Uses

  • Ensure everyone on a team is using the exact same tools
  • Ensure all releases and artifacts build hash-for-hash identical every time
  • Control supply chain security with only signed/reproducible dependencies

Features

  • Can run a shell with all toolchain tooling in the current directory
  • Provide make functions for common tasks
    • Git clone, apply patches, etc.
  • Use a global env file as configuration
  • Hash-locking of apt dependencies from a list of top-level required packages
  • Provides release.env file with required vars to re-create old releases

Requirements

  • docker 18+
  • GNU Make 4+

Setup

  1. Clone toolchain as a git submodule somewhere in your project

    git submodule add https://codeberg.org/distrust/toolchain src/toolchain
    
  2. Include toolchain Makefile in your root Makefile

    include src/toolchain/Makefile
    
  3. Define any build/dev dependencies for toolchain container

    echo "libfaketime" >> config/apt-base.list
    echo "build-essential" >> config/apt-base.list
    
  4. Lock a base Debian container image hash

    echo "DEBIAN_HASH=48b28b354484a7f0e683e340fa0e6e4c4bce3dc3aa0146fc2f78f443fde2c55d" >> config/toolchain.env
    
  5. Generate pinned hashes for all toolchain container dependencies

    make toolchain-update
    
  6. Define your artifact targets

    $(OUT_DIR)/hello: toolchain \
      $(call toolchain,$(USER)," \
        cd $(SRC_DIR)/; \
        gcc hello.c -o $(OUT_DIR)/hello
      ")
    

Usage

Build a new release with named version

make VERSION=1.0.0rc1 dist

Reproduce an existing release

make reproduce

Add and lock a new container dependency

echo "vim-nox" >> config/apt-base.list
make toolchain-update

Run a shell in the toolchain container

make toolchain-shell