image: "$CI_REGISTRY_IMAGE:debian-bookworm-amd64"
<<: *linux_amd64
+.debian-trixie-amd64: &debian_trixie_amd64_image
+ image: "$CI_REGISTRY_IMAGE:debian-trixie-amd64"
+ <<: *linux_amd64
+
.tsan-debian-bookworm-amd64: &tsan_debian_bookworm_amd64_image
image: "$CI_REGISTRY_IMAGE:tsan-debian-bookworm-amd64"
<<: *linux_amd64
- job: gcc:bookworm:amd64
artifacts: true
+# Jobs for regular GCC builds on Debian 13 "trixie" (amd64)
+
+gcc:trixie:amd64:
+ variables:
+ CC: gcc
+ CFLAGS: "${CFLAGS_COMMON}"
+ EXTRA_CONFIGURE: "-Didn=enabled"
+ RUN_MESON_INSTALL: 1
+ <<: *debian_trixie_amd64_image
+ <<: *build_job
+
+system:gcc:trixie:amd64:
+ <<: *debian_trixie_amd64_image
+ <<: *system_test_job
+ needs:
+ - job: gcc:trixie:amd64
+ artifacts: true
+
+unit:gcc:trixie:amd64:
+ <<: *debian_trixie_amd64_image
+ <<: *unit_test_job
+ needs:
+ - job: gcc:trixie:amd64
+ artifacts: true
+
# Build job for cross-compiled GCC builds on 64-bit Debian 12 "bookworm"
# (amd64) with 32-bit BIND 9.
- job: clang:bookworm:amd64
artifacts: true
+# Jobs for Clang builds on Debian 13 "trixie" (amd64)
+
+clang:trixie:amd64:
+ variables:
+ CC: ${CLANG}
+ CFLAGS: "${CFLAGS_COMMON}"
+ RUN_MESON_INSTALL: 1
+ <<: *debian_trixie_amd64_image
+ <<: *build_job
+
+system:clang:trixie:amd64:
+ <<: *debian_trixie_amd64_image
+ <<: *system_test_job
+ <<: *api_pipelines_schedules_tags_triggers_web_triggering_rules
+ needs:
+ - job: clang:trixie:amd64
+ artifacts: true
+
+unit:clang:trixie:amd64:
+ <<: *debian_trixie_amd64_image
+ <<: *unit_test_job
+ <<: *api_pipelines_schedules_tags_triggers_web_triggering_rules
+ needs:
+ - job: clang:trixie:amd64
+ artifacts: true
+
# Jobs for Clang builds on FreeBSD 13 (amd64)
clang:freebsd13:amd64: