forked from docker-library/mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.sh
More file actions
executable file
·160 lines (136 loc) · 4.87 KB
/
update.sh
File metadata and controls
executable file
·160 lines (136 loc) · 4.87 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#!/usr/bin/env bash
set -Eeuo pipefail
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
versions=( "$@" )
if [ ${#versions[@]} -eq 0 ]; then
versions=( */ )
fi
versions=( "${versions[@]%/}" )
defaultFrom='ubuntu:xenial'
declare -A froms=(
#[3.4]='debian:jessie-slim'
#[3.6]='debian:stretch-slim'
[4.1]='ubuntu:bionic'
)
declare -A dpkgArchToBashbrew=(
[amd64]='amd64'
[armel]='arm32v5'
[armhf]='arm32v7'
[arm64]='arm64v8'
[i386]='i386'
[ppc64el]='ppc64le'
[s390x]='s390x'
)
travisEnv=
appveyorEnv=
for version in "${versions[@]}"; do
rcVersion="${version%-rc}"
major="$rcVersion"
rcGrepV='-v'
if [ "$rcVersion" != "$version" ]; then
rcGrepV=
major='testing'
fi
from="${froms[$version]:-$defaultFrom}"
distro="${from%%:*}" # "debian", "ubuntu"
suite="${from#$distro:}" # "jessie-slim", "xenial"
suite="${suite%-slim}" # "jessie", "xenial"
component='multiverse'
if [ "$distro" = 'debian' ]; then
component='main'
fi
repoUrlBase="https://repo.mongodb.org/apt/$distro/dists/$suite/mongodb-org/$major/$component"
fullVersion="$(
curl -fsSL "$repoUrlBase/binary-amd64/Packages.gz" \
| gunzip \
| awk -F ': ' '
$1 == "Package" { pkg = $2 }
pkg ~ /^mongodb-(org(-unstable)?|10gen)$/ && $1 == "Version" { print $2 "=" pkg }
' \
| grep "^$rcVersion\." \
| grep -v '~pre~$' \
| sort -V \
| tail -1
)"
packageName="${fullVersion#*=}"
fullVersion="${fullVersion%=$packageName}"
if [ -z "$fullVersion" ]; then
echo >&2 "error: failed to get full version for '$version' (from '$repoUrlBase')"
exit 1
fi
arches=()
for dpkgArch in "${!dpkgArchToBashbrew[@]}"; do
bashbrewArch="${dpkgArchToBashbrew[$dpkgArch]}"
if [ "$bashbrewArch" = 'amd64' ] || {
# curl doesn't like to be hung up on (which is exactly what "grep -q" will do)
curl -fsSL "$repoUrlBase/binary-$dpkgArch/Packages.gz" 2>/dev/null \
| gunzip 2>/dev/null \
|| :
} | grep -qE '^Package: mongodb-(org(-unstable)?|10gen)$'; then
arches+=( "$bashbrewArch" )
fi
done
sortedArches="$(xargs -n1 <<<"${arches[*]}" | sort | xargs)"
gpgKeyVersion="$rcVersion"
minor="${major#*.}" # "4.3" -> "3"
if [ "$(( minor % 2 ))" = 1 ]; then
gpgKeyVersion="${major%.*}.$(( minor + 1 ))"
fi
gpgKeys="$(grep "^$gpgKeyVersion:" gpg-keys.txt | cut -d: -f2)"
echo "$version: $fullVersion (linux)"
sed -r \
-e 's/^(ENV MONGO_MAJOR) .*/\1 '"$major"'/' \
-e 's/^(ENV MONGO_VERSION) .*/\1 '"$fullVersion"'/' \
-e 's/^(ARG MONGO_PACKAGE)=.*/\1='"$packageName"'/' \
-e 's/^(FROM) .*/\1 '"$from"'/' \
-e 's/%%DISTRO%%/'"$distro"'/' \
-e 's/%%SUITE%%/'"$suite"'/' \
-e 's/%%COMPONENT%%/'"$component"'/' \
-e 's!%%ARCHES%%!'"$sortedArches"'!g' \
-e 's/^(ENV GPG_KEYS) .*/\1 '"$gpgKeys"'/' \
Dockerfile-linux.template \
> "$version/Dockerfile"
if [ "$version" != '3.4' ]; then
sed -ri -e '/backwards compat/d' "$version/Dockerfile"
fi
cp -a docker-entrypoint.sh "$version/"
if [ -d "$version/windows" ]; then
windowsVersions="$(
curl -fsSL 'https://www.mongodb.org/dl/win32/x86_64' \
| grep --extended-regexp --only-matching '"https?://[^"]+/win32/mongodb-win32-x86_64-(2008plus-ssl|2012plus)-'"${rcVersion//./\\.}"'\.[^"]+-signed.msi"' \
| sed \
-e 's!^"!!' \
-e 's!"$!!' \
-e 's!http://downloads.mongodb.org/!https://downloads.mongodb.org/!' \
| grep $rcGrepV -E -- '-rc[0-9]'
)"
windowsLatest="$(echo "$windowsVersions" | head -1)"
windowsSha256="$(curl -fsSL "$windowsLatest.sha256" | cut -d' ' -f1)"
windowsVersion="$(echo "$windowsLatest" | sed -r -e "s!^https?://.+(${rcVersion//./\\.}\.[^\"]+)-signed.msi\$!\1!")"
echo "$version: $windowsVersion (windows)"
for winVariant in \
windowsservercore-{1803,ltsc2016} \
; do
[ -d "$version/windows/$winVariant" ] || continue
sed -r \
-e 's/^(ENV MONGO_VERSION) .*/\1 '"$windowsVersion"'/' \
-e 's!^(ENV MONGO_DOWNLOAD_URL) .*!\1 '"$windowsLatest"'!' \
-e 's/^(ENV MONGO_DOWNLOAD_SHA256) .*/\1 '"$windowsSha256"'/' \
-e 's!^FROM .*!FROM microsoft/'"${winVariant%%-*}"':'"${winVariant#*-}"'!' \
Dockerfile-windows.template \
> "$version/windows/$winVariant/Dockerfile"
if [ "$version" = '3.4' ]; then
sed -ri -e 's/, "--bind_ip_all"//' "$version/windows/$winVariant/Dockerfile"
fi
case "$winVariant" in
*-1803) travisEnv='\n - os: windows\n dist: 1803-containers\n env: VERSION='"$version VARIANT=windows/$winVariant$travisEnv" ;;
*) appveyorEnv='\n - version: '"$version"'\n variant: '"$winVariant$appveyorEnv" ;;
esac
done
fi
travisEnv='\n - os: linux\n env: VERSION='"$version$travisEnv"
done
travis="$(awk -v 'RS=\n\n' '$1 == "matrix:" { $0 = "matrix:\n include:'"$travisEnv"'" } { printf "%s%s", $0, RS }' .travis.yml)"
echo "$travis" > .travis.yml
appveyor="$(awk -v 'RS=\n\n' '$1 == "environment:" { $0 = "environment:\n matrix:'"$appveyorEnv"'" } { printf "%s%s", $0, RS }' .appveyor.yml)"
echo "$appveyor" > .appveyor.yml