]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
builder: remove ubuntu lunar+mantic as they are EOL 14872/head
authorPeter van Dijk <peter.van.dijk@powerdns.com>
Fri, 22 Nov 2024 09:08:40 +0000 (10:08 +0100)
committerromeroalx <alexis.romero@open-xchange.com>
Sun, 24 Nov 2024 23:50:04 +0000 (00:50 +0100)
.github/workflows/builder.yml
builder-support/dockerfiles/Dockerfile.target.ubuntu-lunar [deleted file]
builder-support/dockerfiles/Dockerfile.target.ubuntu-mantic [deleted file]

index 73b0517a0d6e443cd7e01fd02da6b8b8906f69a0..2e3fc4fbab042828b91499abd1054e348c839aef 100644 (file)
@@ -27,8 +27,6 @@ jobs:
           - el-7
           - el-8
           - centos-9-stream
-          - ubuntu-lunar
-          - ubuntu-mantic
           - ubuntu-noble
           - debian-bookworm
           - debian-trixie
diff --git a/builder-support/dockerfiles/Dockerfile.target.ubuntu-lunar b/builder-support/dockerfiles/Dockerfile.target.ubuntu-lunar
deleted file mode 100644 (file)
index c3c3c4d..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# First do the source builds
-@INCLUDE Dockerfile.target.sdist
-
-FROM ubuntu:lunar as dist-base
-
-ARG BUILDER_CACHE_BUSTER=
-ARG APT_URL
-RUN apt-get update && apt-get -y dist-upgrade
-
-@INCLUDE Dockerfile.debbuild-prepare
-
-@IF [ -n "$M_authoritative$M_all" ]
-ADD builder-support/debian/authoritative/debian-buster/ pdns-${BUILDER_VERSION}/debian/
-@ENDIF
-
-@IF [ -n "$M_recursor$M_all" ]
-ADD builder-support/debian/recursor/debian-buster/ pdns-recursor-${BUILDER_VERSION}/debian/
-@ENDIF
-
-@IF [ -n "$M_dnsdist$M_all" ]
-ADD builder-support/debian/dnsdist/debian-buster/ dnsdist-${BUILDER_VERSION}/debian/
-@ENDIF
-
-@INCLUDE Dockerfile.debbuild
-
-# Do a test install and verify
-# Can be skipped with skiptests=1 in the environment
-# @EXEC [ "$skiptests" = "" ] && include Dockerfile.debtest
diff --git a/builder-support/dockerfiles/Dockerfile.target.ubuntu-mantic b/builder-support/dockerfiles/Dockerfile.target.ubuntu-mantic
deleted file mode 100644 (file)
index 21639a4..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# First do the source builds
-@INCLUDE Dockerfile.target.sdist
-
-FROM ubuntu:mantic as dist-base
-
-ARG BUILDER_CACHE_BUSTER=
-ARG APT_URL
-RUN apt-get update && apt-get -y dist-upgrade
-
-@INCLUDE Dockerfile.debbuild-prepare
-
-@IF [ -n "$M_authoritative$M_all" ]
-ADD builder-support/debian/authoritative/debian-buster/ pdns-${BUILDER_VERSION}/debian/
-@ENDIF
-
-@IF [ -n "$M_recursor$M_all" ]
-ADD builder-support/debian/recursor/debian-buster/ pdns-recursor-${BUILDER_VERSION}/debian/
-@ENDIF
-
-@IF [ -n "$M_dnsdist$M_all" ]
-ADD builder-support/debian/dnsdist/debian-bookworm/ dnsdist-${BUILDER_VERSION}/debian/
-@ENDIF
-
-@INCLUDE Dockerfile.debbuild
-
-# Do a test install and verify
-# Can be skipped with skiptests=1 in the environment
-# @EXEC [ "$skiptests" = "" ] && include Dockerfile.debtest