-
Notifications
You must be signed in to change notification settings - Fork 505
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cross: create new variant with protobuf version 3.0.2
- Loading branch information
Showing
5 changed files
with
174 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
# Copyright 2020 The Kubernetes Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# This file creates a standard build environment for building cross | ||
# platform go binary for the architecture kubernetes cares about. | ||
|
||
ARG GO_VERSION | ||
FROM golang:${GO_VERSION} | ||
|
||
##------------------------------------------------------------ | ||
# global ARGs & ENVs | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
ENV GOARM 7 | ||
ENV KUBE_DYNAMIC_CROSSPLATFORMS \ | ||
armhf \ | ||
arm64 \ | ||
s390x \ | ||
ppc64el | ||
|
||
ENV KUBE_CROSSPLATFORMS \ | ||
linux/386 \ | ||
linux/arm linux/arm64 \ | ||
linux/ppc64le \ | ||
linux/s390x \ | ||
darwin/amd64 darwin/386 \ | ||
windows/amd64 windows/386 | ||
|
||
##------------------------------------------------------------ | ||
|
||
# Pre-compile the standard go library when cross-compiling. This is much easier now when we have go1.5+ | ||
RUN for platform in ${KUBE_CROSSPLATFORMS}; do GOOS=${platform%/*} GOARCH=${platform##*/} go install std; done \ | ||
&& go clean -cache | ||
|
||
# Install packages | ||
RUN apt-get -q update \ | ||
&& apt-get install -qqy \ | ||
apt-utils \ | ||
file \ | ||
jq \ | ||
patch \ | ||
rsync \ | ||
unzip | ||
|
||
# Use dynamic cgo linking for architectures other than amd64 for the server platforms | ||
# To install crossbuild essential for other architectures add the following repository. | ||
RUN echo "deb http://archive.ubuntu.com/ubuntu xenial main universe" > /etc/apt/sources.list.d/cgocrosscompiling.list \ | ||
&& apt-key adv --no-tty --keyserver keyserver.ubuntu.com --recv-keys 40976EAF437D05B5 3B4FE6ACC0B21F32 \ | ||
&& apt-get update \ | ||
&& apt-get install -y build-essential \ | ||
&& for platform in ${KUBE_DYNAMIC_CROSSPLATFORMS}; do apt-get install -y crossbuild-essential-${platform}; done | ||
|
||
ARG PROTOBUF_VERSION | ||
ENV ZIPNAME="protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" | ||
RUN mkdir /tmp/protoc && cd /tmp/protoc \ | ||
&& wget "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOBUF_VERSION}/${ZIPNAME}" \ | ||
&& unzip "${ZIPNAME}" \ | ||
&& chmod -R +rX /tmp/protoc \ | ||
&& cp -pr bin /usr/local \ | ||
&& cp -pr include /usr/local \ | ||
&& rm -rf /tmp/protoc \ | ||
&& protoc --version | ||
|
||
# work around 64MB tmpfs size in Docker 1.6 | ||
ENV TMPDIR /tmp.k8s | ||
RUN mkdir $TMPDIR \ | ||
&& chmod a+rwx $TMPDIR \ | ||
&& chmod o+t $TMPDIR | ||
|
||
# Get the code coverage tool and goimports | ||
RUN go get golang.org/x/tools/cmd/cover \ | ||
golang.org/x/tools/cmd/goimports \ | ||
&& go clean -cache | ||
|
||
# Download and symlink etcd. We need this for our integration tests. | ||
ARG ETCD_VERSION | ||
RUN mkdir -p /usr/local/src/etcd \ | ||
&& cd /usr/local/src/etcd \ | ||
&& curl -fsSL https://github.com/coreos/etcd/releases/download/${ETCD_VERSION}/etcd-${ETCD_VERSION}-linux-amd64.tar.gz | tar -xz \ | ||
&& chown -R $(id -u):$(id -g) /usr/local/src/etcd \ | ||
&& ln -s ../src/etcd/etcd-${ETCD_VERSION}-linux-amd64/etcd /usr/local/bin/ | ||
|
||
# Cleanup a bit | ||
RUN apt-get -qqy remove \ | ||
wget \ | ||
&& apt-get clean \ | ||
&& rm -rf -- \ | ||
/var/lib/apt/lists/* | ||
|
||
ENTRYPOINT [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,29 @@ | ||
variants: | ||
canary: | ||
TYPE: 'default' | ||
CONFIG: 'canary' | ||
GO_VERSION: '1.16rc1' | ||
IMAGE_VERSION: 'v1.16.0-rc.1-canary-1' | ||
PROTOBUF_VERSION: '3.7.0' | ||
ETCD_VERSION: 'v3.4.13' | ||
go1.16: | ||
TYPE: 'default' | ||
CONFIG: 'go1.16' | ||
GO_VERSION: '1.16rc1' | ||
IMAGE_VERSION: 'v1.16.0-rc.1-1' | ||
PROTOBUF_VERSION: '3.7.0' | ||
ETCD_VERSION: 'v3.4.13' | ||
go1.15: | ||
TYPE: 'default' | ||
CONFIG: 'go1.15' | ||
GO_VERSION: '1.15.8' | ||
IMAGE_VERSION: 'v1.15.8-1' | ||
PROTOBUF_VERSION: '3.7.0' | ||
ETCD_VERSION: 'v3.4.13' | ||
go1.15-legacy: | ||
TYPE: 'legacy' | ||
CONFIG: 'go1.15' | ||
GO_VERSION: '1.15.8' | ||
IMAGE_VERSION: 'v1.15.8-legacy-1' | ||
PROTOBUF_VERSION: '3.0.2' | ||
ETCD_VERSION: 'v3.4.13' |