From d9ac1998fddce80726192ebd9dfe5b0bc7967669 Mon Sep 17 00:00:00 2001 From: Fang-Pen Lin Date: Fri, 12 Dec 2025 17:17:21 -0800 Subject: [PATCH] Use local dns server --- .github/workflows/run-backend-bdd-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run-backend-bdd-tests.yml b/.github/workflows/run-backend-bdd-tests.yml index 7b54aa44e8..36dd55c7bd 100644 --- a/.github/workflows/run-backend-bdd-tests.yml +++ b/.github/workflows/run-backend-bdd-tests.yml @@ -51,6 +51,8 @@ jobs: echo "ACME_DEVELOPMENT_MODE=true" >> .env echo "ACME_DEVELOPMENT_HTTP01_CHALLENGE_HOST_OVERRIDES={\"localhost\": \"host.docker.internal:8087\", \"infisical.com\": \"host.docker.internal:8087\", \"example.com\": \"host.docker.internal:8087\"}" >> .env echo "BDD_NOCK_API_ENABLED=true" >> .env + # use Technitium DNS server for BDD tests + echo "ACME_DNS_RESOLVER_SERVERS=technitium" >> .env # Skip upstream validation, otherwise the ACME client for the upstream will try to # validate the DNS records, which will fail because the DNS records are not actually created. echo "ACME_SKIP_UPSTREAM_VALIDATION=true" >> .env