forked from CircleCI-Public/cimg-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgresFeed.sh
More file actions
executable file
·34 lines (28 loc) · 923 Bytes
/
postgresFeed.sh
File metadata and controls
executable file
·34 lines (28 loc) · 923 Bytes
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
#!/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
getPostgresVersion() {
RSS_URL="https://github.com/postgres/postgres/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 =~ ^REL_[0-9]+(\_[0-9]+)*$ ]]; then
generateVersions "$(echo "$version" | sed -r 's/REL_//g; s/_/./g')"
generateSearchTerms "PG_VER=" "$majorMinor/Dockerfile" ""
directoryCheck "$majorMinor" "$SEARCH_TERM"
fi
done
}
getPostgresVersion
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