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/.github/workflows/sync_to_adjacent_repos.sh

57 lines
1.7 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-02-13 15:36:35 +0000 (Thu, 13 Feb 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="$(dirname "$0")"
cd "$srcdir"
if [ -n "$*" ]; then
echo "$@"
else
sed 's/#.*//; s/:/ /' ../../setup/repolist.txt
fi |
grep -v -e bash-tools -e '^[[:space:]]*$' |
while read -r repo dir; do
if [ -z "$dir" ]; then
dir="$repo"
fi
repo="$(tr '[:upper:]' '[:lower:]' <<< "$repo")"
if ! [ -d "../../../$dir" ]; then
echo "WARNING: repo dir $dir not found, skipping..."
continue
fi
for filename in *.yaml; do
target="../../../$dir/.github/workflows/$filename"
if [ -f "$target.disabled" ]; then
target="$target.disabled"
fi
if [ -n "${ALL:-}" ] || grep -Eq '^[[:space:]]*(container|python-version):' "$filename"; then
if [ -n "${NEW:-}" ] || [ -f "$target" ]; then
echo "syncing $filename -> $target"
timeout=60
if [[ "$repo" =~ nagios-plugins ]]; then
timeout=240
fi
sed "s/bash-tools/$repo/;s/timeout-minutes:.*/timeout-minutes: $timeout/" "$filename" > "$target"
if [ "$repo" = "nagios-plugins" ]; then
perl -pi -e 's/(^[[:space:]]+make$)/\1 build zookeeper/' "$target"
fi
fi
fi
done
done