-
Notifications
You must be signed in to change notification settings - Fork 6
/
redisFeed.sh
executable file
·38 lines (32 loc) · 1003 Bytes
/
redisFeed.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
#!/usr/bin/env bash
vers=()
if [ -f shared/automated-updates.sh ]; then
source shared/automated-updates.sh
else
echo "Check if submodule was loaded; automated-updates.sh is missing"
exit 1
fi
getRedisVersions() {
RSS_URL="https://github.com/redis/redis/tags.atom"
VERSIONS=$(curl --silent "$RSS_URL" | grep -E '(title)' | tail -n +2 | sed -e 's/^[ \t]*//' | sed -e 's/<title>//' -e 's/<\/title>//')
for version in $VERSIONS; do
if [[ $version =~ ^[0-9]+(\.[0-9]+)*$ ]]; then
generateVersions "$version"
generateSearchTerms "REDIS_VERSION=" "$majorMinor"/Dockerfile
buildParameter "$newVersion"
directoryCheck "$majorMinor" "$SEARCH_TERM"
if [[ $(eval echo $?) == 0 ]]; then
generateVersionString "$newVersion"
fi
fi
done
}
getRedisVersions
if [ -n "${vers[*]}" ]; then
echo "Included version updates: ${vers[*]}"
echo "Running release script"
./shared/release.sh "${vers[@]}"
else
echo "No new version updates"
exit 0
fi