netbox-docker/build-latest.sh

92 lines
2.9 KiB
Bash
Raw Normal View History

#!/bin/bash
2018-03-05 14:29:24 +01:00
# Builds the latest released version
2018-04-10 10:58:31 +02:00
echo "▶️ $0 $*"
2021-10-06 21:58:30 +02:00
###
# Check for the jq library needed for parsing JSON
###
if ! command -v jq; then
2021-10-14 08:30:07 +02:00
echo "⚠️ jq command missing from \$PATH!"
exit 1
2021-10-06 21:58:30 +02:00
fi
###
# Checking for the presence of GITHUB_OAUTH_CLIENT_ID
# and GITHUB_OAUTH_CLIENT_SECRET
###
2019-02-01 09:58:07 +01:00
if [ -n "${GITHUB_OAUTH_CLIENT_ID}" ] && [ -n "${GITHUB_OAUTH_CLIENT_SECRET}" ]; then
echo "🗝 Performing authenticated Github API calls."
GITHUB_OAUTH_PARAMS="client_id=${GITHUB_OAUTH_CLIENT_ID}&client_secret=${GITHUB_OAUTH_CLIENT_SECRET}"
else
echo "🕶 Performing unauthenticated Github API calls. This might result in lower Github rate limits!"
GITHUB_OAUTH_PARAMS=""
fi
###
# Checking if PRERELEASE is either unset, 'true' or 'false'
###
2019-10-15 00:40:48 +02:00
if [ -n "${PRERELEASE}" ] &&
2021-02-08 12:16:04 +01:00
{ [ "${PRERELEASE}" != "true" ] && [ "${PRERELEASE}" != "false" ]; }; then
2019-10-15 00:40:48 +02:00
if [ -z "${DEBUG}" ]; then
echo "⚠️ PRERELEASE must be either unset, 'true' or 'false', but was '${PRERELEASE}'!"
exit 1
else
2019-10-15 00:40:48 +02:00
echo "⚠️ Would exit here with code '1', but DEBUG is enabled."
fi
fi
###
# Calling Github to get the latest version
###
ORIGINAL_GITHUB_REPO="netbox-community/netbox"
GITHUB_REPO="${GITHUB_REPO-$ORIGINAL_GITHUB_REPO}"
URL_RELEASES="https://api.github.com/repos/${GITHUB_REPO}/releases?${GITHUB_OAUTH_PARAMS}"
# Composing the JQ commans to extract the most recent version number
JQ_LATEST="group_by(.prerelease) | .[] | sort_by(.published_at) | reverse | .[0] | select(.prerelease==${PRERELEASE-false}) | .tag_name"
2018-03-05 14:29:24 +01:00
CURL="curl -sS"
# Querying the Github API to fetch the most recent version number
VERSION=$($CURL "${URL_RELEASES}" | jq -r "${JQ_LATEST}")
###
# Check if the prerelease version is actually higher than stable version
###
if [ "${PRERELEASE}" == "true" ]; then
JQ_STABLE="group_by(.prerelease) | .[] | sort_by(.published_at) | reverse | .[0] | select(.prerelease==false) | .tag_name"
2018-03-05 14:29:24 +01:00
STABLE_VERSION=$($CURL "${URL_RELEASES}" | jq -r "${JQ_STABLE}")
2018-03-05 14:29:24 +01:00
# shellcheck disable=SC2003
MAJOR_STABLE=$(expr match "${STABLE_VERSION}" 'v\([0-9]\+\)')
2018-03-05 14:29:24 +01:00
# shellcheck disable=SC2003
MINOR_STABLE=$(expr match "${STABLE_VERSION}" 'v[0-9]\+\.\([0-9]\+\)')
2018-03-05 14:29:24 +01:00
# shellcheck disable=SC2003
MAJOR_UNSTABLE=$(expr match "${VERSION}" 'v\([0-9]\+\)')
2018-03-05 14:29:24 +01:00
# shellcheck disable=SC2003
MINOR_UNSTABLE=$(expr match "${VERSION}" 'v[0-9]\+\.\([0-9]\+\)')
2021-02-08 12:16:04 +01:00
if {
[ "${MAJOR_STABLE}" -eq "${MAJOR_UNSTABLE}" ] &&
[ "${MINOR_STABLE}" -ge "${MINOR_UNSTABLE}" ]
} || [ "${MAJOR_STABLE}" -gt "${MAJOR_UNSTABLE}" ]; then
2019-10-15 00:40:48 +02:00
echo "❎ Latest unstable version '${VERSION}' is not higher than the latest stable version '$STABLE_VERSION'."
2018-03-05 14:30:30 +01:00
if [ -z "$DEBUG" ]; then
2020-01-17 18:10:36 +01:00
if [ -n "${GH_ACTION}" ]; then
echo "::set-output name=skipped::true"
fi
2018-03-05 14:30:30 +01:00
exit 0
else
echo "⚠️ Would exit here with code '0', but DEBUG is enabled."
fi
fi
fi
# shellcheck disable=SC2068
./build.sh "${VERSION}" $@
exit $?