-
Notifications
You must be signed in to change notification settings - Fork 15.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop 3.3, 3.4 and use single version docker images for all python tes…
…ts (#7396) * Create a new docker image for python 3.6 The previous one cannot build, because python3.6 was removed from stretch. * Drop support for 3.3 and 3.4 Also update all docker file to be single version
- Loading branch information
Showing
31 changed files
with
127 additions
and
260 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
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,23 @@ | ||
FROM python:2.7-buster | ||
|
||
# Install dependencies. We start with the basic ones require to build protoc | ||
# and the C++ build | ||
RUN apt-get update && apt-get install -y \ | ||
autoconf \ | ||
autotools-dev \ | ||
build-essential \ | ||
bzip2 \ | ||
ccache \ | ||
curl \ | ||
gcc \ | ||
git \ | ||
libc6 \ | ||
libc6-dbg \ | ||
libc6-dev \ | ||
libgtest-dev \ | ||
libtool \ | ||
make \ | ||
parallel \ | ||
time \ | ||
wget \ | ||
&& apt-get clean |
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,23 @@ | ||
FROM python:3.5-buster | ||
|
||
# Install dependencies. We start with the basic ones require to build protoc | ||
# and the C++ build | ||
RUN apt-get update && apt-get install -y \ | ||
autoconf \ | ||
autotools-dev \ | ||
build-essential \ | ||
bzip2 \ | ||
ccache \ | ||
curl \ | ||
gcc \ | ||
git \ | ||
libc6 \ | ||
libc6-dbg \ | ||
libc6-dev \ | ||
libgtest-dev \ | ||
libtool \ | ||
make \ | ||
parallel \ | ||
time \ | ||
wget \ | ||
&& apt-get clean |
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,23 @@ | ||
FROM python:3.6-buster | ||
|
||
# Install dependencies. We start with the basic ones require to build protoc | ||
# and the C++ build | ||
RUN apt-get update && apt-get install -y \ | ||
autoconf \ | ||
autotools-dev \ | ||
build-essential \ | ||
bzip2 \ | ||
ccache \ | ||
curl \ | ||
gcc \ | ||
git \ | ||
libc6 \ | ||
libc6-dbg \ | ||
libc6-dev \ | ||
libgtest-dev \ | ||
libtool \ | ||
make \ | ||
parallel \ | ||
time \ | ||
wget \ | ||
&& apt-get clean |
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,23 @@ | ||
FROM python:3.7-buster | ||
|
||
# Install dependencies. We start with the basic ones require to build protoc | ||
# and the C++ build | ||
RUN apt-get update && apt-get install -y \ | ||
autoconf \ | ||
autotools-dev \ | ||
build-essential \ | ||
bzip2 \ | ||
ccache \ | ||
curl \ | ||
gcc \ | ||
git \ | ||
libc6 \ | ||
libc6-dbg \ | ||
libc6-dev \ | ||
libgtest-dev \ | ||
libtool \ | ||
make \ | ||
parallel \ | ||
time \ | ||
wget \ | ||
&& apt-get clean |
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,23 @@ | ||
FROM python:3.8-buster | ||
|
||
# Install dependencies. We start with the basic ones require to build protoc | ||
# and the C++ build | ||
RUN apt-get update && apt-get install -y \ | ||
autoconf \ | ||
autotools-dev \ | ||
build-essential \ | ||
bzip2 \ | ||
ccache \ | ||
curl \ | ||
gcc \ | ||
git \ | ||
libc6 \ | ||
libc6-dbg \ | ||
libc6-dev \ | ||
libgtest-dev \ | ||
libtool \ | ||
make \ | ||
parallel \ | ||
time \ | ||
wget \ | ||
&& apt-get clean |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.