versions update

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-01-01 10:09:03 -05:00
parent c9fefef1b1
commit c19ed0daa7
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
5 changed files with 8 additions and 7 deletions

View File

@ -31,8 +31,8 @@ build_and_push(){
sleep 15 sleep 15
done done
# also push the tag latest for "stable" tags # also push the tag latest for "stable" (chrome) or "3.5" tags for zookeeper
if [[ "$suite" == "stable" ]]; then if [[ "$suite" == "stable" ]] || [[ "$suite" == "3.5" ]]; then
docker tag ${REPO_URL}/${base}:${suite} ${REPO_URL}/${base}:latest docker tag ${REPO_URL}/${base}:${suite} ${REPO_URL}/${base}:latest
docker push --disable-content-trust=false ${REPO_URL}/${base}:latest docker push --disable-content-trust=false ${REPO_URL}/${base}:latest
fi fi

View File

@ -38,6 +38,8 @@ get_latest() {
dir="golang-softhsm2" dir="golang-softhsm2"
elif [[ "$dir" == "bazel" ]]; then elif [[ "$dir" == "bazel" ]]; then
dir="gitiles" dir="gitiles"
elif [[ "$dir" == "zookeeper" ]]; then
dir="zookeeper/3.5"
elif [[ "$dir" == "oauth2_proxy" ]]; then elif [[ "$dir" == "oauth2_proxy" ]]; then
dir="oauth2-proxy" dir="oauth2-proxy"
fi fi
@ -47,9 +49,8 @@ get_latest() {
if [[ "$tag" =~ "$current" ]] || [[ "$name" =~ "$current" ]] || [[ "$current" =~ "$tag" ]] || [[ "$current" == "master" ]]; then if [[ "$tag" =~ "$current" ]] || [[ "$name" =~ "$current" ]] || [[ "$current" =~ "$tag" ]] || [[ "$current" == "master" ]]; then
echo -e "\e[36m${dir}:\e[39m current ${current} | ${tag} | ${name}" echo -e "\e[36m${dir}:\e[39m current ${current} | ${tag} | ${name}"
else else
if [[ "$dir" != "zookeeper" ]]; then # add to the bad versions
bad_versions+=( "${dir}" ) bad_versions+=( "${dir}" )
fi
echo -e "\e[31m${dir}:\e[39m current ${current} | ${tag} | ${name} | https://github.com/${repo}/releases" echo -e "\e[31m${dir}:\e[39m current ${current} | ${tag} | ${name} | https://github.com/${repo}/releases"
fi fi
} }

View File

@ -7,7 +7,7 @@ ENV GOPATH /go
RUN apk --no-cache add \ RUN apk --no-cache add \
ca-certificates ca-certificates
ENV VAULT_VERSION v0.9.0 ENV VAULT_VERSION v0.9.1
RUN buildDeps=' \ RUN buildDeps=' \
bash \ bash \

View File

@ -17,7 +17,7 @@ RUN apk add --no-cache \
libmnl-dev libmnl-dev
# https://git.zx2c4.com/WireGuard/refs/ # https://git.zx2c4.com/WireGuard/refs/
ENV WIREGUARD_VERSION 0.0.20171211 ENV WIREGUARD_VERSION 0.0.20171221
RUN set -x \ RUN set -x \
&& apk add --no-cache --virtual .build-deps \ && apk add --no-cache --virtual .build-deps \