]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add Debian 11 (bullseye)
authorMichal Nowak <mnowak@isc.org>
Tue, 17 Aug 2021 08:38:14 +0000 (10:38 +0200)
committerMichal Nowak <mnowak@isc.org>
Fri, 22 Oct 2021 09:08:45 +0000 (11:08 +0200)
(cherry picked from commit 2b5dfae5de5cc65258073d8cd4c650aa27dac3ea)

.gitlab-ci.yml

index 33bf9d1a9e91a778e7a779edbf434bd48070d5dc..1db92f4d406ff9af8fe662656aa90aecbef89520 100644 (file)
@@ -126,6 +126,10 @@ stages:
   image: "$CI_REGISTRY_IMAGE:debian-buster-amd64"
   <<: *linux_amd64
 
+.debian-bullseye-amd64: &debian_bullseye_amd64_image
+  image: "$CI_REGISTRY_IMAGE:debian-bullseye-amd64"
+  <<: *linux_amd64
+
 .debian-sid-amd64: &debian_sid_amd64_image
   image: "$CI_REGISTRY_IMAGE:debian-sid-amd64"
   <<: *linux_amd64
@@ -730,6 +734,30 @@ unit:gcc:buster:amd64:
     - job: gcc:buster:amd64
       artifacts: true
 
+# Jobs for regular GCC builds on Debian 11 "bullseye" (amd64)
+
+gcc:bullseye:amd64:
+  variables:
+    CC: gcc
+    CFLAGS: "${CFLAGS_COMMON} -O2"
+    EXTRA_CONFIGURE: "--without-gssapi --with-libidn2"
+  <<: *debian_bullseye_amd64_image
+  <<: *build_job
+
+system:gcc:bullseye:amd64:
+  <<: *debian_bullseye_amd64_image
+  <<: *system_test_job
+  needs:
+    - job: gcc:bullseye:amd64
+      artifacts: true
+
+unit:gcc:bullseye:amd64:
+  <<: *debian_bullseye_amd64_image
+  <<: *unit_test_job
+  needs:
+    - job: gcc:bullseye:amd64
+      artifacts: true
+
 # Jobs for scan-build builds on Debian Buster (amd64)
 
 .scan_build: &scan_build