1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
#!/bin/bash
# release.sh: configurable signed-artefact release script
# Copyright (C) 2016-2019 SUSE LLC.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
set -Eeuo pipefail
## --->
# Project-specific options and functions. In *theory* you shouldn't need to
# touch anything else in this script in order to use this elsewhere.
project="catatonit"
root="$(readlink -f "$(dirname "${BASH_SOURCE}")/..")"
# Make pushd and popd silent.
function pushd() { command pushd "$@" &>/dev/null ; }
function popd() { command popd "$@" &>/dev/null ; }
# These functions allow you to configure how the defaults are computed.
function get_arch() { uname -m ; }
function get_version() { echo '@PACKAGE_VERSION@' | "$root/config.status" --file - ; }
# Any pre-configuration steps should be done here -- for instance ./configure.
function setup_project() {
pushd "$root"
./autogen.sh
./configure LDFLAGS="-static" --prefix=/ --bindir=/bin
popd
}
# This function takes an output path as an argument, where the built
# (preferably static) binary should be placed.
function build_project() {
tmprootfs="$(mktemp -d --tmpdir "$project-build.XXXXXX")"
make -C "$root" clean all install DESTDIR="$tmprootfs"
mv "$tmprootfs/bin/$project" "$1"
rm -rf "$tmprootfs"
}
# End of the easy-to-configure portion.
## <---
# Print usage information.
function usage() {
echo "usage: release.sh [-h] [-v <version>] [-c <commit>] [-o <output-dir>]" >&2
echo " [-H <hashcmd>] [-S <gpg-key>]" >&2
}
# Log something to stderr.
function log() {
echo "[*]" "$@" >&2
}
# Log something to stderr and then exit with 0.
function quit() {
log "$@"
exit 0
}
# Conduct a sanity-check to make sure that GPG provided with the given
# arguments can sign something. Inability to sign things is not a fatal error.
function gpg_cansign() {
gpg "$@" --clear-sign </dev/null >/dev/null
}
# When creating releases we need to build (ideally static) binaries, an archive
# of the current commit, and generate detached signatures for both.
keyid=""
version=""
arch=""
commit="HEAD"
hashcmd="sha256sum"
while getopts ":h:v:c:o:S:H:" opt; do
case "$opt" in
S)
keyid="$OPTARG"
;;
c)
commit="$OPTARG"
;;
o)
outputdir="$OPTARG"
;;
v)
version="$OPTARG"
;;
H)
hashcmd="$OPTARG"
;;
h)
usage ; exit 0
;;
\:)
echo "Missing argument: -$OPTARG" >&2
usage ; exit 1
;;
\?)
echo "Invalid option: -$OPTARG" >&2
usage ; exit 1
;;
esac
done
# Run project setup first...
( set -x ; setup_project )
# Generate the defaults for version and so on *after* argument parsing and
# setup_project, to avoid calling get_version() needlessly.
version="${version:-$(get_version)}"
arch="${arch:-$(get_arch)}"
outputdir="${outputdir:-release/$version}"
log "[[ $project ]]"
log "version: $version"
log "commit: $commit"
log "output_dir: $outputdir"
log "key: ${keyid:-(default)}"
log "hash_cmd: $hashcmd"
# Make explicit what we're doing.
set -x
# Make the release directory.
rm -rf "$outputdir" && mkdir -p "$outputdir"
# Build project.
build_project "$outputdir/$project.$arch"
# Generate new archive.
git archive --format=tar --prefix="$project-$version/" "$commit" | xz > "$outputdir/$project.tar.xz"
# Generate sha256 checksums for both.
( cd "$outputdir" ; "$hashcmd" "$project".{"$arch",tar.xz} > "$project.$hashcmd" ; )
# Set up the gpgflags.
gpgflags=()
[[ -z "$keyid" ]] || gpgflags+=("--default-key=$keyid")
gpg_cansign "${gpgflags[@]}" || quit "Could not find suitable GPG key, skipping signing step."
# Sign everything.
gpg "${gpgflags[@]}" --detach-sign --armor "$outputdir/$project.$arch"
gpg "${gpgflags[@]}" --detach-sign --armor "$outputdir/$project.tar.xz"
gpg "${gpgflags[@]}" --clear-sign --armor \
--output "$outputdir/$project.$hashcmd"{.tmp,} && \
mv "$outputdir/$project.$hashcmd"{.tmp,}
|