Skip to content
Snippets Groups Projects
Commit 166808ff91de authored by kiilerix's avatar kiilerix
Browse files

packaging: drop "support" for unsupported Fedora versions

Fedora 31 has just been released, and Fedora 29 will be EOL in a month. Don't
spend any time thinking about dead stuff.
parent fdc3af52305b
No related branches found
No related tags found
No related merge requests found
......@@ -189,9 +189,6 @@
docker-centos7 \
docker-debian-jessie \
docker-debian-stretch \
docker-fedora20 \
docker-fedora21 \
docker-fedora28 \
docker-fedora29 \
docker-ubuntu-trusty \
docker-ubuntu-trusty-ppa \
......@@ -201,9 +198,6 @@
docker-ubuntu-artful-ppa \
docker-ubuntu-bionic \
docker-ubuntu-bionic-ppa \
fedora20 \
fedora21 \
fedora28 \
fedora29 \
linux-wheels \
linux-wheels-x86_64 \
......
......@@ -12,9 +12,6 @@
disco
FEDORA_RELEASES := \
20 \
21 \
28 \
29
CENTOS_RELEASES := \
......
FROM fedora:20
RUN groupadd -g 1000 build && \
useradd -u 1000 -g 1000 -s /bin/bash -d /build -m build
RUN yum install -y \
gcc \
gettext \
make \
python-devel \
python-docutils \
rpm-build
# For creating repo meta data
RUN yum install -y createrepo
FROM fedora:21
RUN groupadd -g 1000 build && \
useradd -u 1000 -g 1000 -s /bin/bash -d /build -m build
RUN yum install -y \
gcc \
gettext \
make \
python-devel \
python-docutils \
rpm-build
# For creating repo meta data
RUN yum install -y createrepo
FROM fedora:28
RUN groupadd -g 1000 build && \
useradd -u 1000 -g 1000 -s /bin/bash -d /build -m build
RUN dnf install -y \
gcc \
gettext \
make \
python-devel \
python-docutils \
rpm-build
# For creating repo meta data
RUN dnf install -y createrepo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment