-
Notifications
You must be signed in to change notification settings - Fork 342
/
update-remote.sh
executable file
·74 lines (64 loc) · 2.21 KB
/
update-remote.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env bash
set -Eeuo pipefail
trap 'echo >&2 Ctrl+C captured, exiting; exit 1' SIGINT
# going for "bashbrew: command not found"
bashbrew --help > /dev/null
repos=( "$@" )
if [ ${#repos[@]} -eq 0 ]; then
IFS=$'\n'
repos=( $(bashbrew list --all --repos) )
unset IFS
fi
repos=( "${repos[@]%/}" )
docker build --pull -t repo-info:remote -q -f Dockerfile.remote . > /dev/null
trap 'docker rm -f repo-info-remote > /dev/null' EXIT
docker run -e DOCKERHUB_PUBLIC_PROXY -d --name repo-info-remote repo-info:remote daemon > /dev/null
trap 'err="$?"; echo >&2 "ERROR: exit code $err"; ( set -x && docker logs repo-info-remote ); exit "$err"' ERR
export repoInfoDaemon='http://localhost:3000' # since we're using "docker exec", we can just hit localhost
export curl='docker exec -i repo-info-remote curl -fsSL'
tries=10
while [ "$($curl --max-time 2 "$repoInfoDaemon" -o /dev/null &> /dev/null || echo "$?")" = '7' ]; do
(( --tries )) || :
if [ "$tries" -eq 0 ]; then
echo >&2 "error: repo-info:remote daemon did not start up in a reasonable amount of time"
exit 1
fi
sleep 1
done
# use "xargs" for parallelism
export generator="$0" tab=$'\t' quot="'"
xargs <<<"${repos[*]}" -n 1 -P "${PARALLELISM:-8}" bash -Eeuo pipefail -c '
for repo; do
rm -rf "repos/$repo/remote"
mkdir -p "repos/$repo/remote"
./generate-readme.sh "$repo" > "repos/$repo/README.md"
tags=( $(bashbrew list "$repo" 2>/dev/null | sort -u) )
rm -f "repos/$repo/tag-details.md"
{
echo "<!-- THIS FILE IS GENERATED VIA $quot$generator$quot -->"
echo
echo "# Tags of \`$repo\`"
echo
# add a simple ToC
for tag in "${tags[@]}"; do
# GitHub heading anchors are strange
href="${tag//./}"
href="${href//:/}"
href="#${href,,}"
echo "-$tab[\`$tag\`]($href)"
done
if [ "${#tags[@]}" -eq 0 ]; then
echo "-$tab**No supported tags**"
fi
# fetch each markdown
for tag in "${tags[@]}"; do
echo >&2 "processing: $tag"
echo
{
$curl "$repoInfoDaemon/markdown/$tag" | tee "repos/$repo/remote/${tag#*:}.md"; \
} || exit 255
# > If any invocation of the command exits with a status of 255, xargs will stop immediately without reading any further input.
done
} > "repos/$repo/tag-details.md"
done
' --