netbox-docker/build-branches.sh

17 lines
408 B
Bash
Raw Normal View History

#!/bin/bash
2018-03-05 14:29:24 +01:00
# Builds all published branches
ORIGINAL_GITHUB_REPO="digitalocean/netbox"
GITHUB_REPO="${GITHUB_REPO-$ORIGINAL_GITHUB_REPO}"
URL_RELEASES="https://api.github.com/repos/${GITHUB_REPO}/branches"
2018-03-05 14:29:24 +01:00
CURL="curl -sS"
BRANCHES=$($CURL "${URL_RELEASES}" | jq -r 'map(.name) | .[] | scan("^[^v].+")')
for BRANCH in $BRANCHES; do
2018-03-05 14:29:24 +01:00
# shellcheck disable=SC2068
./build.sh "${BRANCH}" $@
2018-03-05 16:28:35 +01:00
exit $?
done