Files
firezone/scripts/tests/tcp-dns.sh
Jamil 516be7417e fix(ci): remove extraneous caching (#10258)
- Removes the swift DerivedData cache. This was added to attempt to
speed up the Swift builds in CI but in reality, those are already fast
and the cache did not speed them up.
- Removes the runner.os/arch specifier from the Webview installer cache
key. The binary download is hardcoded for a specific windows version /
arch already so the cache key just adds unneeded complexity.

These caches are getting saved on PR runs which consumes excess GHA
cache storage.
2025-08-27 05:01:02 -07:00

18 lines
527 B
Bash
Executable File

#!/usr/bin/env bash
source "./scripts/tests/lib.sh"
client sh -c "apk add --update --no-cache bind-tools" # The compat tests run using the production image which doesn't have `dig`.
echo "Resolving DNS resource over TCP with search domain"
client sh -c "dig +search +tcp dns"
echo "Resolving DNS resource over TCP with FQDN"
client sh -c "dig +tcp download.httpbin"
echo "Resolving non-DNS resource over TCP"
client sh -c "dig +tcp example.com"
echo "Testing TCP fallback"
client sh -c "dig 2048.size.dns.netmeister.org"