Message ID | 20200120115053.1010739-3-anthony.perard@citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Default to python3 | expand |
On 1/20/20 5:50 AM, Anthony PERARD wrote: > Those containers have already been updated in GitLab: > - debian/stretch > - debian/stretch-i386 > - debian/unstable > - debian/unstable-i386 > - fedora/29 > - suse/opensuse-leap > - ubuntu/bionic > - ubuntu/trusty > - ubuntu/xenial > > The container debian:unstable-arm64v8 haven't been changed. > > Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Acked-by: Doug Goldstein <cardoe@cardoe.com>
diff --git a/automation/build/debian/stretch-i386.dockerfile b/automation/build/debian/stretch-i386.dockerfile index d2e96fafa73e..4797ae344231 100644 --- a/automation/build/debian/stretch-i386.dockerfile +++ b/automation/build/debian/stretch-i386.dockerfile @@ -18,6 +18,7 @@ RUN apt-get update && \ libncurses5-dev \ libssl-dev \ python-dev \ + python3-dev \ xorg-dev \ uuid-dev \ libyajl-dev \ diff --git a/automation/build/debian/stretch.dockerfile b/automation/build/debian/stretch.dockerfile index 44e6eee07f5c..cfbb2e9b0b60 100644 --- a/automation/build/debian/stretch.dockerfile +++ b/automation/build/debian/stretch.dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && \ libncurses5-dev \ libssl-dev \ python-dev \ + python3-dev \ xorg-dev \ uuid-dev \ libyajl-dev \ diff --git a/automation/build/debian/unstable-i386.dockerfile b/automation/build/debian/unstable-i386.dockerfile index 07df84224029..1a73b3b1eca3 100644 --- a/automation/build/debian/unstable-i386.dockerfile +++ b/automation/build/debian/unstable-i386.dockerfile @@ -18,6 +18,7 @@ RUN apt-get update && \ libncurses5-dev \ libssl-dev \ python-dev \ + python3-dev \ xorg-dev \ uuid-dev \ libyajl-dev \ diff --git a/automation/build/debian/unstable.dockerfile b/automation/build/debian/unstable.dockerfile index a1428a3df045..2a834f671912 100644 --- a/automation/build/debian/unstable.dockerfile +++ b/automation/build/debian/unstable.dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && \ libncurses5-dev \ libssl-dev \ python-dev \ + python3-dev \ xorg-dev \ uuid-dev \ libyajl-dev \ diff --git a/automation/build/fedora/29.dockerfile b/automation/build/fedora/29.dockerfile index 8ad0b2baf70c..5be4a9e2294c 100644 --- a/automation/build/fedora/29.dockerfile +++ b/automation/build/fedora/29.dockerfile @@ -14,6 +14,7 @@ RUN dnf -y install \ zlib-devel \ openssl-devel \ python-devel \ + python3-devel \ libuuid-devel \ pkgconfig \ gettext \ diff --git a/automation/build/suse/opensuse-leap.dockerfile b/automation/build/suse/opensuse-leap.dockerfile index b68d5b0efba7..c60c13c943f2 100644 --- a/automation/build/suse/opensuse-leap.dockerfile +++ b/automation/build/suse/opensuse-leap.dockerfile @@ -56,6 +56,7 @@ RUN zypper install -y --no-recommends \ pkg-config \ python \ python-devel \ + python3-devel \ systemd-devel \ tar \ transfig \ diff --git a/automation/build/ubuntu/bionic.dockerfile b/automation/build/ubuntu/bionic.dockerfile index 8e6a5d581f55..712b2e47229c 100644 --- a/automation/build/ubuntu/bionic.dockerfile +++ b/automation/build/ubuntu/bionic.dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && \ libncurses5-dev \ libssl-dev \ python-dev \ + python3-dev \ xorg-dev \ uuid-dev \ libyajl-dev \ diff --git a/automation/build/ubuntu/trusty.dockerfile b/automation/build/ubuntu/trusty.dockerfile index d43d60c5f51d..397a28061ddd 100644 --- a/automation/build/ubuntu/trusty.dockerfile +++ b/automation/build/ubuntu/trusty.dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && \ libncurses5-dev \ libssl-dev \ python-dev \ + python3-dev \ xorg-dev \ uuid-dev \ libyajl-dev \ diff --git a/automation/build/ubuntu/xenial.dockerfile b/automation/build/ubuntu/xenial.dockerfile index 66ddf15923fc..ce0e84fa2fb8 100644 --- a/automation/build/ubuntu/xenial.dockerfile +++ b/automation/build/ubuntu/xenial.dockerfile @@ -16,6 +16,7 @@ RUN apt-get update && \ libncurses5-dev \ libssl-dev \ python-dev \ + python3-dev \ xorg-dev \ uuid-dev \ libyajl-dev \
Those containers have already been updated in GitLab: - debian/stretch - debian/stretch-i386 - debian/unstable - debian/unstable-i386 - fedora/29 - suse/opensuse-leap - ubuntu/bionic - ubuntu/trusty - ubuntu/xenial The container debian:unstable-arm64v8 haven't been changed. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- I don't know how to update the container for ARM, so it hasn't been changed. --- automation/build/debian/stretch-i386.dockerfile | 1 + automation/build/debian/stretch.dockerfile | 1 + automation/build/debian/unstable-i386.dockerfile | 1 + automation/build/debian/unstable.dockerfile | 1 + automation/build/fedora/29.dockerfile | 1 + automation/build/suse/opensuse-leap.dockerfile | 1 + automation/build/ubuntu/bionic.dockerfile | 1 + automation/build/ubuntu/trusty.dockerfile | 1 + automation/build/ubuntu/xenial.dockerfile | 1 + 9 files changed, 9 insertions(+)