From b211c795ada6fa53dbb28a82cd1c20b123353210 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Wed, 6 Mar 2024 08:39:45 +0800 Subject: [PATCH] Remove tox-xenial - EOL, difficult to maintain test environment --- .buildbot/tox-xenial/Dockerfile | 50 --------------------------------- .buildbot/tox-xenial/test.sh | 1 - 2 files changed, 51 deletions(-) delete mode 100644 .buildbot/tox-xenial/Dockerfile delete mode 120000 .buildbot/tox-xenial/test.sh diff --git a/.buildbot/tox-xenial/Dockerfile b/.buildbot/tox-xenial/Dockerfile deleted file mode 100644 index c1401b1a..00000000 --- a/.buildbot/tox-xenial/Dockerfile +++ /dev/null @@ -1,50 +0,0 @@ -FROM ubuntu:xenial - -RUN apt-get update - -# Common apt packages -RUN apt-get install -yq --no-install-suggests --no-install-recommends \ - software-properties-common build-essential libcap-dev libffi-dev \ - libssl-dev python-all-dev python-pip python-setuptools python3-dev - -# wget -RUN apt-get install -yq --no-install-suggests --no-install-recommends \ - libgmp-dev m4 pkgconf wget - -RUN wget "https://ftp.gnu.org/gnu/nettle/nettle-3.9.1.tar.gz" \ - && tar -zxf nettle-3.9.1.tar.gz - -RUN cd nettle-3.9.1 \ - && ./configure --disable-openssl --enable-shared \ - && make && make install - -RUN wget "https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.16.tar.xz" \ - && tar -Jxf gnutls-3.6.16.tar.xz - -RUN apt-get remove -yq libgnutls30 - -RUN cd gnutls-3.6.16 \ - && ./configure --prefix=/usr --without-p11-kit \ - --with-included-libtasn1 --with-included-unistring --without-idn \ - && make && make install - -RUN wget "https://ftp.gnu.org/gnu/wget/wget2-2.1.0.tar.gz" \ - && tar -zxf wget2-2.1.0.tar.gz - -RUN apt-get remove -yq wget - -RUN cd wget2-2.1.0 \ - && ./configure --without-libpsl --prefix=/usr \ - GNUTLS_CFLAGS=-I/usr/include/gnutls/ GNUTLS_LIBS=-L/usr/lib \ - && make && make install \ - && mv /usr/bin/wget2 /usr/bin/wget - -RUN wget -O /usr/local/bin/buildbot_entrypoint.sh http://git.bitmessage.org/Bitmessage/buildbot-scripts/raw/branch/master/docker/xenial/entrypoint.sh - -RUN pip install --upgrade pip==20.0.1 -RUN pip install --upgrade setuptools -RUN pip install tox - -ADD . . - -CMD .buildbot/tox-xenial/test.sh diff --git a/.buildbot/tox-xenial/test.sh b/.buildbot/tox-xenial/test.sh deleted file mode 120000 index a9f8525c..00000000 --- a/.buildbot/tox-xenial/test.sh +++ /dev/null @@ -1 +0,0 @@ -../tox-bionic/test.sh \ No newline at end of file