build: allow for reproducible builds 52/39152/11
authorAndrew Yourtchenko <ayourtch@gmail.com>
Wed, 18 Oct 2023 21:18:32 +0000 (21:18 +0000)
committerDamjan Marion <dmarion@0xa5.net>
Thu, 26 Oct 2023 12:09:44 +0000 (12:09 +0000)
commit5ca8bfcacb3be58c46965ab52fba72ac6dfb828c
treed50ba1ac74b752d3fea76bedc07b638024a28da7
parente9d7babde07ea93af54336200dbd65cc64bbd7ff
build: allow for reproducible builds

Setting and using the SOURCE_DATE_EPOCH variable takes
care of most of the magic necessary.
https://reproducible-builds.org/docs/source-date-epoch/

vpp-ext-deps packages after this change is being built with that
date set to date of the last modification of the
subtree (similar logic to deriving the "number" for
the package version)

For the rest of the packages, pinning the following
three variables should result in bit-identical
artifacts across multiple runs:

export SOURCE_DATE_EPOCH=$(date +%s)
export VPP_BUILD_HOST="buildhost"
export VPP_BUILD_USER="builduser"

Add a blurb in the docs describing this new functionality.

Type: improvement
Change-Id: I71b085f0577b2358aa98f01dafd8e392239420a6
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
build-data/packages/vpp.mk
build/external/Makefile
docs/developer/build-run-debug/building.rst
docs/spelling_wordlist.txt
src/pkg/CMakeLists.txt