Skip to content

Commit b28a045

Browse files
committed
chore: add more comments in 'dig command'
1 parent 322d17c commit b28a045

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.ci/cloudbuild.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,14 @@ steps:
2121
- |
2222
apt-get update
2323
apt-get install dnsutils -y
24-
echo "dig ${_DNS_NAME} ..."
24+
echo "dig ${_DNS_NAME} ... (with +trace)"
25+
dig +trace ${_DNS_NAME}
26+
echo "dig ${_DNS_NAME} ... (without +trace)"
2527
dig ${_DNS_NAME}
28+
echo "cat /etc/resolv.conf"
29+
cat /etc/resolv.conf
30+
echo "ip route"
31+
ip route
2632
2733
- id: run integration tests
2834
name: python:${_VERSION}

0 commit comments

Comments
 (0)