From 57f95331464f097261c63fd1b6040536c58a03fa Mon Sep 17 00:00:00 2001 From: Carl Dong Date: Mon, 21 Dec 2020 13:53:46 -0500 Subject: [PATCH] guix: Add section headings to guix-build.sh --- contrib/guix/guix-build.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/contrib/guix/guix-build.sh b/contrib/guix/guix-build.sh index e268a8b996..b956be6579 100755 --- a/contrib/guix/guix-build.sh +++ b/contrib/guix/guix-build.sh @@ -2,6 +2,10 @@ export LC_ALL=C set -e -o pipefail +################### +## Sanity Checks ## +################### + # GUIX_BUILD_OPTIONS is an environment variable recognized by guix commands that # can perform builds. This seems like what we want instead of # ADDITIONAL_GUIX_COMMON_FLAGS, but the value of GUIX_BUILD_OPTIONS is actually @@ -26,6 +30,10 @@ EOF exit 1 fi +######### +# Setup # +######### + # Determine the maximum number of jobs to run simultaneously (overridable by # environment) MAX_JOBS="${MAX_JOBS:-$(nproc)}" @@ -49,6 +57,10 @@ time-machine() { -- "$@" } +######### +# Build # +######### + # Function to be called when building for host ${1} and the user interrupts the # build int_trap() {