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
done
# also push the tag latest for "stable" tags
if [[ "$suite" == "stable" ]]; then
# also push the tag latest for "stable" (chrome) or "3.5" tags for zookeeper
if [[ "$suite" == "stable" ]] || [[ "$suite" == "3.5" ]]; then
docker tag ${REPO_URL}/${base}:${suite} ${REPO_URL}/${base}:latest
docker push --disable-content-trust=false ${REPO_URL}/${base}:latest
fi

View File

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

View File

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

View File

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