This release comes with minor usability improvements and features. * A new 'lookupIPAddr' template function is available for resolving DNS A records in templates. Thanks to @landro for the pull request! * Handling of "non-standard" resource set structures has been improved to result in better error messages and behaviour in several places. Release binaries are signed with GPG key `66F505681DB8F43B` which is verified on my Github profile. -------------- Note: This is the last Kontemplate release that will be written in Go. Rob Pike's art project has proven its point but I believe it is ethically questionable and morally indefensible to continue on this path. You can track #72 for the Rust-rewrite of Kontemplate.
		
			
				
	
	
		
			66 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
set -ueo pipefail
 | 
						|
 | 
						|
readonly GIT_HASH="$(git rev-parse --short HEAD)"
 | 
						|
readonly LDFLAGS="-X main.gitHash=${GIT_HASH} -w -s"
 | 
						|
readonly VERSION="1.3.0-${GIT_HASH}"
 | 
						|
 | 
						|
function binary-name() {
 | 
						|
    local os="${1}"
 | 
						|
    local target="${2}"
 | 
						|
    if [ "${os}" = "windows" ]; then
 | 
						|
        echo -n "${target}/kontemplate.exe"
 | 
						|
    else
 | 
						|
        echo -n "${target}/kontemplate"
 | 
						|
    fi
 | 
						|
}
 | 
						|
 | 
						|
function build-for() {
 | 
						|
    local os="${1}"
 | 
						|
    local arch="${2}"
 | 
						|
    local target="release/${os}/${arch}"
 | 
						|
    local bin=$(binary-name "${os}" "${target}")
 | 
						|
 | 
						|
    echo "Building kontemplate for ${os}-${arch} in ${target}"
 | 
						|
 | 
						|
    mkdir -p "${target}"
 | 
						|
 | 
						|
    env GOOS="${os}" GOARCH="${arch}" go build \
 | 
						|
        -ldflags "${LDFLAGS}" \
 | 
						|
        -o "${bin}" \
 | 
						|
        -tags netgo
 | 
						|
}
 | 
						|
 | 
						|
function sign-for() {
 | 
						|
    local os="${1}"
 | 
						|
    local arch="${2}"
 | 
						|
    local target="release/${os}/${arch}"
 | 
						|
    local bin=$(binary-name "${os}" "${target}")
 | 
						|
    local tar="release/kontemplate-${VERSION}-${os}-${arch}.tar.gz"
 | 
						|
 | 
						|
    echo "Packing release into ${tar}"
 | 
						|
    tar czvf "${tar}" -C "${target}" $(basename "${bin}")
 | 
						|
 | 
						|
    local hash=$(sha256sum "${tar}")
 | 
						|
    echo "Signing kontemplate release tarball for ${os}-${arch} with SHA256 ${hash}"
 | 
						|
    gpg --armor --detach-sig --sign "${tar}"
 | 
						|
}
 | 
						|
 | 
						|
case "${1}" in
 | 
						|
    "build")
 | 
						|
        # Build releases for various operating systems:
 | 
						|
        build-for "linux" "amd64"
 | 
						|
        build-for "darwin" "amd64"
 | 
						|
        build-for "windows" "amd64"
 | 
						|
        build-for "freebsd" "amd64"
 | 
						|
        exit 0
 | 
						|
        ;;
 | 
						|
    "sign")
 | 
						|
        # Bundle and sign releases:
 | 
						|
        sign-for "linux" "amd64"
 | 
						|
        sign-for "darwin" "amd64"
 | 
						|
        sign-for "windows" "amd64"
 | 
						|
        sign-for "freebsd" "amd64"
 | 
						|
        exit 0
 | 
						|
        ;;
 | 
						|
esac
 |