]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Remove CentOS 6 from Jenkins builds as now EOL
authorMatthew Newton <matthew-git@newtoncomputing.co.uk>
Fri, 19 Mar 2021 20:51:33 +0000 (20:51 +0000)
committerMatthew Newton <matthew-git@newtoncomputing.co.uk>
Fri, 19 Mar 2021 20:51:33 +0000 (20:51 +0000)
scripts/jenkins/centos6/Dockerfile [deleted file]
scripts/jenkins/centos6/Dockerfile.testrepo [deleted file]

diff --git a/scripts/jenkins/centos6/Dockerfile b/scripts/jenkins/centos6/Dockerfile
deleted file mode 100644 (file)
index d8f709a..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-FROM centos:6
-RUN yum groupinstall -y "Development Tools"
-RUN yum install -y rpmdevtools
-RUN yum install -y openssl yum-utils
-
-#
-#  Create build directory
-#
-RUN mkdir -p /usr/local/src/repositories
-WORKDIR /usr/local/src/repositories
-
-#
-#  Shallow clone the FreeRADIUS source
-#
-ARG source=https://github.com/FreeRADIUS/freeradius-server.git
-ARG release=v3.0.x
-
-RUN git clone --depth 1 --branch ${release} ${source}
-WORKDIR freeradius-server
-#
-#  Other requirements
-#
-
-# Use LTB's openldap packages intead of the distribution version to avoid linking against NSS
-RUN echo $'[ltb-project]\n\
-name=LTB project packages\n\
-baseurl=https://ltb-project.org/rpm/$releasever/$basearch\n\
-enabled=1\n\
-gpgcheck=1\n\
-gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-LTB-project'\
-> /etc/yum.repos.d/ltb-project.repo
-RUN rpm --import https://ltb-project.org/lib/RPM-GPG-KEY-LTB-project
-
-# EPEL repository for freetds and hiredis
-RUN yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
-
-#
-#  Install build dependencies
-#
-RUN [ -e redhat/freeradius.spec ] && yum-builddep -y redhat/freeradius.spec
-
diff --git a/scripts/jenkins/centos6/Dockerfile.testrepo b/scripts/jenkins/centos6/Dockerfile.testrepo
deleted file mode 100644 (file)
index e25c00b..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#
-#  Clean image to test packages in
-#
-FROM centos:6