mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-27 20:25:55 -04:00
parent
a8eed36d3e
commit
a4f910a720
2 changed files with 56 additions and 1 deletions
|
|
@ -221,6 +221,10 @@ stages:
|
|||
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
|
||||
|
|
@ -1152,6 +1156,31 @@ unit:gcc:bookworm:rbt:amd64:
|
|||
- job: gcc:bookworm:rbt:amd64
|
||||
artifacts: true
|
||||
|
||||
# Jobs for regular GCC builds on Debian 13 "trixie" (amd64)
|
||||
|
||||
gcc:trixie:amd64:
|
||||
variables:
|
||||
CC: gcc
|
||||
CFLAGS: "${CFLAGS_COMMON}"
|
||||
EXTRA_CONFIGURE: "--with-libidn2"
|
||||
RUN_MAKE_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.
|
||||
|
||||
|
|
@ -1579,6 +1608,32 @@ unit:clang:bookworm:amd64:
|
|||
- 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_MAKE_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:
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ Regularly Tested Platforms
|
|||
Current versions of BIND 9 are fully supported and regularly tested on the
|
||||
following systems:
|
||||
|
||||
- Debian 12
|
||||
- Debian 12, 13
|
||||
- Ubuntu LTS 22.04, 24.04
|
||||
- Fedora 42
|
||||
- Red Hat Enterprise Linux / CentOS / AlmaLinux 8, 9, 10
|
||||
|
|
|
|||
Loading…
Reference in a new issue