-
Notifications
You must be signed in to change notification settings - Fork 16
/
phpFeed.sh
executable file
·37 lines (31 loc) · 990 Bytes
/
phpFeed.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
#!/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
getPHPVersion() {
RSS_URL="https://github.com/php/php-src/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 =~ ^php-[0-9]+(\.[0-9]+)*$ ]]; then
generateVersions "$(cut -d "-" -f2 <<< "${version}")"
generateSearchTerms "PHP_VERSION=" "$majorMinor/Dockerfile"
directoryCheck "$majorMinor" "$SEARCH_TERM"
if [[ $(eval echo $?) == 0 ]]; then
generateVersionString "$newVersion"
fi
fi
done
}
getPHPVersion
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