mirror of https://github.com/grpc/grpc.git
Merge pull request #20764 from veblush/drop-legacy
Delete deprecated linux environments from distribtestpull/20778/head
commit
46d8d0165c
14 changed files with 0 additions and 353 deletions
@ -1,21 +0,0 @@ |
|||||||
# Copyright 2016 gRPC 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. |
|
||||||
|
|
||||||
FROM ubuntu:12.04 |
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y curl |
|
||||||
|
|
||||||
# Install nvm |
|
||||||
RUN touch .profile |
|
||||||
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.30.2/install.sh | bash |
|
@ -1,21 +0,0 @@ |
|||||||
# Copyright 2016 gRPC 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. |
|
||||||
|
|
||||||
FROM debian:wheezy |
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y curl |
|
||||||
|
|
||||||
# Install nvm |
|
||||||
RUN touch .profile |
|
||||||
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.30.2/install.sh | bash |
|
@ -1,23 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM fedora:22 |
|
||||||
|
|
||||||
RUN yum clean all && yum update -y && yum install -y python python-pip |
|
||||||
RUN pip install virtualenv |
|
||||||
|
|
||||||
RUN yum groupinstall -y "Development Tools" |
|
||||||
RUN yum install -y redhat-rpm-config |
|
||||||
RUN yum install -y gcc-c++ |
|
||||||
RUN yum install -y python2-devel |
|
@ -1,24 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM fedora:20 |
|
||||||
|
|
||||||
RUN yum clean all && yum update -y && yum install -y python python-pip |
|
||||||
|
|
||||||
# Upgrading six would fail because of docker issue when using overlay. |
|
||||||
# Trying twice makes it work fine. |
|
||||||
# https://github.com/docker/docker/issues/10180 |
|
||||||
RUN pip install --upgrade six || pip install --upgrade six |
|
||||||
|
|
||||||
RUN pip install virtualenv |
|
@ -1,29 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM fedora:21 |
|
||||||
|
|
||||||
# Make yum work properly under docker when using overlay storage driver. |
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1213602#c9 |
|
||||||
# https://github.com/docker/docker/issues/10180 |
|
||||||
RUN yum install -y yum-plugin-ovl |
|
||||||
|
|
||||||
RUN yum clean all && yum update -y && yum install -y python python-pip |
|
||||||
|
|
||||||
# Upgrading six would fail because of docker issue when using overlay. |
|
||||||
# Trying twice makes it work fine. |
|
||||||
# https://github.com/docker/docker/issues/10180 |
|
||||||
RUN pip2 install --upgrade six || pip2 install --upgrade six |
|
||||||
|
|
||||||
RUN pip2 install virtualenv |
|
@ -1,18 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM fedora:22 |
|
||||||
|
|
||||||
RUN yum clean all && yum update -y && yum install -y python python-pip |
|
||||||
RUN pip install virtualenv |
|
@ -1,21 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM ubuntu:12.04 |
|
||||||
|
|
||||||
RUN apt-get update -y && apt-get install -y python python-pip |
|
||||||
|
|
||||||
# Use --index-url to workaround |
|
||||||
# https://stackoverflow.com/questions/21294997/pip-connection-failure-cannot-fetch-index-base-url-http-pypi-python-org-simpl |
|
||||||
RUN pip install --index-url=https://pypi.python.org/simple/ virtualenv |
|
@ -1,21 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM debian:wheezy |
|
||||||
|
|
||||||
RUN apt-get update -y && apt-get install -y python python-pip |
|
||||||
|
|
||||||
# Use --index-url to workaround |
|
||||||
# https://stackoverflow.com/questions/21294997/pip-connection-failure-cannot-fetch-index-base-url-http-pypi-python-org-simpl |
|
||||||
RUN pip install --index-url=https://pypi.python.org/simple/ virtualenv |
|
@ -1,36 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM fedora:20 |
|
||||||
|
|
||||||
# distro-sync and install openssl, per https://github.com/fedora-cloud/docker-brew-fedora/issues/19 |
|
||||||
RUN yum clean all && yum update -y && yum distro-sync -y && yum install -y openssl gnupg which findutils |
|
||||||
|
|
||||||
# Install rvm |
|
||||||
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB |
|
||||||
RUN curl -sSL https://get.rvm.io | bash -s stable |
|
||||||
|
|
||||||
# Install Ruby 2.3 |
|
||||||
# Running the installation twice to work around docker issue when using overlay. |
|
||||||
# https://github.com/docker/docker/issues/10180 |
|
||||||
RUN (/bin/bash -l -c "rvm install ruby-2.3.8") || (/bin/bash -l -c "rvm install ruby-2.3.8") |
|
||||||
RUN /bin/bash -l -c "rvm use --default ruby-2.3.8" |
|
||||||
RUN /bin/bash -l -c "echo 'gem: --no-document' > ~/.gemrc" |
|
||||||
RUN /bin/bash -l -c "echo 'export PATH=/usr/local/rvm/bin:$PATH' >> ~/.bashrc" |
|
||||||
RUN /bin/bash -l -c "echo 'rvm --default use ruby-2.3.8' >> ~/.bashrc" |
|
||||||
RUN /bin/bash -l -c "gem install bundler -v 1.17.3 --no-document" |
|
||||||
|
|
||||||
RUN mkdir /var/local/jenkins |
|
||||||
|
|
||||||
RUN /bin/bash -l -c "echo '. /etc/profile.d/rvm.sh' >> ~/.bashrc" |
|
@ -1,39 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM fedora:21 |
|
||||||
|
|
||||||
# Make yum work properly under docker when using overlay storage driver. |
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1213602#c9 |
|
||||||
# https://github.com/docker/docker/issues/10180 |
|
||||||
RUN yum install -y yum-plugin-ovl |
|
||||||
|
|
||||||
# distro-sync and install openssl, per https://github.com/fedora-cloud/docker-brew-fedora/issues/19 |
|
||||||
RUN yum clean all && yum update -y && yum distro-sync -y && yum install -y openssl gnupg which findutils tar |
|
||||||
|
|
||||||
# Install rvm |
|
||||||
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB |
|
||||||
RUN curl -sSL https://get.rvm.io | bash -s stable |
|
||||||
|
|
||||||
# Install Ruby 2.3 |
|
||||||
RUN /bin/bash -l -c "rvm install ruby-2.3.8" |
|
||||||
RUN /bin/bash -l -c "rvm use --default ruby-2.3.8" |
|
||||||
RUN /bin/bash -l -c "echo 'gem: --no-document' > ~/.gemrc" |
|
||||||
RUN /bin/bash -l -c "echo 'export PATH=/usr/local/rvm/bin:$PATH' >> ~/.bashrc" |
|
||||||
RUN /bin/bash -l -c "echo 'rvm --default use ruby-2.3.8' >> ~/.bashrc" |
|
||||||
RUN /bin/bash -l -c "gem install bundler -v 1.17.3 --no-document" |
|
||||||
|
|
||||||
RUN mkdir /var/local/jenkins |
|
||||||
|
|
||||||
RUN /bin/bash -l -c "echo '. /etc/profile.d/rvm.sh' >> ~/.bashrc" |
|
@ -1,39 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM fedora:22 |
|
||||||
|
|
||||||
# Make yum work properly under docker when using overlay storage driver. |
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1213602#c9 |
|
||||||
# https://github.com/docker/docker/issues/10180 |
|
||||||
RUN yum install -y yum-plugin-ovl |
|
||||||
|
|
||||||
# distro-sync and install openssl, per https://github.com/fedora-cloud/docker-brew-fedora/issues/19 |
|
||||||
RUN yum clean all && yum update -y && yum distro-sync -y && yum install -y openssl gnupg which findutils tar procps |
|
||||||
|
|
||||||
# Install rvm |
|
||||||
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB |
|
||||||
RUN curl -sSL https://get.rvm.io | bash -s stable |
|
||||||
|
|
||||||
# Install Ruby 2.3 |
|
||||||
RUN /bin/bash -l -c "rvm install ruby-2.3.8" |
|
||||||
RUN /bin/bash -l -c "rvm use --default ruby-2.3.8" |
|
||||||
RUN /bin/bash -l -c "echo 'gem: --no-document' > ~/.gemrc" |
|
||||||
RUN /bin/bash -l -c "echo 'export PATH=/usr/local/rvm/bin:$PATH' >> ~/.bashrc" |
|
||||||
RUN /bin/bash -l -c "echo 'rvm --default use ruby-2.3.8' >> ~/.bashrc" |
|
||||||
RUN /bin/bash -l -c "gem install bundler -v 1.17.3 --no-document" |
|
||||||
|
|
||||||
RUN mkdir /var/local/jenkins |
|
||||||
|
|
||||||
RUN /bin/bash -l -c "echo '. /etc/profile.d/rvm.sh' >> ~/.bashrc" |
|
@ -1,24 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM ubuntu:12.04 |
|
||||||
|
|
||||||
RUN apt-get update -y && apt-get install -y curl |
|
||||||
|
|
||||||
# Install rvm |
|
||||||
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 |
|
||||||
RUN \curl -sSL https://get.rvm.io | bash -s stable --ruby |
|
||||||
|
|
||||||
RUN /bin/bash -l -c "echo '. /etc/profile.d/rvm.sh' >> ~/.bashrc" |
|
||||||
RUN /bin/bash -l -c "gem install --update bundler" |
|
@ -1,26 +0,0 @@ |
|||||||
# Copyright 2015 gRPC 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. |
|
||||||
|
|
||||||
FROM debian:wheezy |
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y curl |
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y procps |
|
||||||
|
|
||||||
# Install rvm |
|
||||||
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 |
|
||||||
RUN \curl -sSL https://get.rvm.io | bash -s stable --ruby |
|
||||||
|
|
||||||
RUN /bin/bash -l -c "echo '. /etc/profile.d/rvm.sh' >> ~/.bashrc" |
|
||||||
RUN /bin/bash -l -c "gem install --update bundler" |
|
Loading…
Reference in new issue