mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[PR #3167] [MERGED] dns-test: generalize hickory dnssec feature #3606
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#3606
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/3167
Author: @cpu
Created: 7/29/2025
Status: ✅ Merged
Merged: 7/30/2025
Merged by: @cpu
Base:
main← Head:cpu-generalize-dnssec-feature_dev📝 Commits (2)
9c838eeci: allow dispatch of conformance CI jobafbdc8ddns-test: generalize hickory dnssec feature📊 Changes
7 files changed (+56 additions, -46 deletions)
View changed files
📝
.github/workflows/conformance.yml(+1 -0)📝
conformance/README.md(+5 -5)📝
conformance/packages/dns-test/src/container.rs(+17 -12)📝
conformance/packages/dns-test/src/docker/hickory.Dockerfile(+5 -5)📝
conformance/packages/dns-test/src/implementation.rs(+19 -15)📝
conformance/packages/dns-test/src/lib.rs(+6 -6)📝
justfile(+3 -3)📄 Description
Allow specifying just the crypto provider (
aws-lc-rsorring) and use that as a suffix for required features instead of passing a more specific feature (dnssec-aws-lc-rs,dnssec-ring).Previously the
dns-testcrate offered the ability to customize the HickoryDNS docker image so the auth server binary was built with either thednssec-aws-lc-rsCargo feature, or thednssec-ringCargo feature. Thednsutil binary always usedaws-lc-rsunconditionally.In the future we will want to enable other crate features that require a cryptography provider (e.g.
tls-aws-lc-rsortls-ringfor DoT). It's also helpful for build-time to have thehickory-utilcrate use the same crypto provider as the auth server. By making the argument a crypto provider instead of a specific feature we can accomplish both.Also, allow triggering the CI run of the full conformance suite on-demand through the web UI.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.