[9.18] new: ci: Add Debian "trixie" (386)
Some checks failed
CodeQL / Analyze (push) Has been cancelled
SonarCloud / Build and analyze (push) Has been cancelled

Backport of MR !12079

Merge branch 'backport-mnowak/add-debian-trixie-386-9.18' into 'bind-9.18'

See merge request isc-projects/bind9!12083
This commit is contained in:
Michal Nowak 2026-05-22 20:03:48 +02:00
commit 8d8d2009c2
3 changed files with 49 additions and 3 deletions

View file

@ -211,6 +211,10 @@ stages:
image: "$CI_REGISTRY_IMAGE:debian-trixie-amd64cross32"
<<: *linux_amd64
.debian-trixie-386: &debian_trixie_386_image
image: "$CI_REGISTRY_IMAGE:debian-trixie-386"
<<: *linux_amd64
.debian-sid-amd64: &debian_sid_amd64_image
image: "$CI_REGISTRY_IMAGE:debian-sid-amd64"
<<: *linux_amd64
@ -1308,6 +1312,33 @@ gcc:trixie:amd64cross32:
<<: *debian_trixie_amd64cross32_image
<<: *build_job
# Jobs for regular GCC builds on Debian 13 "trixie" (386)
gcc:trixie:386:
variables:
CC: gcc
CFLAGS: "${CFLAGS_COMMON}"
EXTRA_CONFIGURE: "--with-libidn2"
<<: *debian_trixie_386_image
<<: *build_job
system:gcc:trixie:386:
<<: *debian_trixie_386_image
<<: *system_test_job
<<: *extra_system_tests_triggering_rules
needs:
- job: gcc:trixie:386
artifacts: true
unit:gcc:trixie:386:
<<: *debian_trixie_386_image
<<: *unit_test_job
<<: *api_pipelines_schedules_tags_triggers_web_triggering_rules
needs:
- job: gcc:trixie:386
artifacts: true
# Jobs for regular GCC builds on Debian "sid" (amd64)
# Also tests configration option: --without-lmdb.

View file

@ -1321,8 +1321,12 @@ class AsyncDnsServer(AsyncServer):
qctx.socket,
qctx.protocol.name,
)
try:
response_text = str(response)
except OverflowError:
response_text = "<response not representable as text>"
logging.debug(
"\n".join([f"[OUT] {l}" for l in [""] + str(response).splitlines()])
"\n".join([f"[OUT] {l}" for l in [""] + response_text.splitlines()])
)
return

View file

@ -38,6 +38,17 @@ def generic_query(
log_response: bool = True,
) -> Any:
def _safe_to_text(msg: dns.message.Message) -> str:
"""
Convert a DNS message to text, tolerating dnspython's failure to render
RRSIG inception/expiration timestamps that overflow the platform's
time_t (e.g. post-2038 values on 32-bit systems).
"""
try:
return msg.to_text()
except OverflowError:
return "<message not representable as text>"
def log_querymsg(exception: Exception | None = None) -> None:
"""
Helper for logging query message. Call this *after* query_func() has
@ -48,7 +59,7 @@ def generic_query(
nonlocal log_query
if log_query:
isctest.log.debug(
f"isc.query.{query_func.__name__}(): query\n{message.to_text()}"
f"isc.query.{query_func.__name__}(): query\n{_safe_to_text(message)}"
)
log_query = False # only log query once
@ -79,7 +90,7 @@ def generic_query(
if res:
if log_response:
isctest.log.debug(
f"isc.query.{query_func.__name__}(): response\n{res.to_text()}"
f"isc.query.{query_func.__name__}(): response\n{_safe_to_text(res)}"
)
if res.rcode() == expected_rcode or expected_rcode is None:
return res