You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/check_shippable_readme_ids.sh

45 lines
1.5 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-03-24 16:06:50 +0000 (Tue, 24 Mar 2020)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck disable=SC1090
#. "$srcdir/lib/utils.sh"
if [ -z "${SHIPPABLE_TOKEN:-}" ]; then
echo "Shippable token not set, skipping shippable check"
exit 0
fi
echo "Checking Shippable README.md Project Badge"
# https://img.shields.io/shippable/5e52c634d79b7d00077bf5ed/master?label=Shippable)](https://app.shippable.com/github/HariSekhon/DevOps-Bash-tools/dashboard/jobs
find . -name README.md -exec grep -Eo 'img.shields.io/shippable/.*app.shippable.com/[^/]+/[^/]+/[^/]+' {} \; |
sed 's,img.shields.io/shippable/,,; s,[^[:alnum:]].*app.shippable.com/[^/]*/, ,' |
while read -r id name; do
"$srcdir/shippable_projects.sh" "$id" "$@" |
while read -r id2 owner repo; do
if [ "$id" != "$id2" ]; then
echo "id '$id' != returned id '$id2'"
exit 1
fi
if [ "${name}" != "$owner/$repo" ]; then
echo "README.md Shippable badge name '$name' vs ID mismatch ('$owner/$repo')"
exit 1
fi
done || exit 1
done
echo