We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 322d17c commit b28a045Copy full SHA for b28a045
.ci/cloudbuild.yaml
@@ -21,8 +21,14 @@ steps:
21
- |
22
apt-get update
23
apt-get install dnsutils -y
24
- echo "dig ${_DNS_NAME} ..."
+ echo "dig ${_DNS_NAME} ... (with +trace)"
25
+ dig +trace ${_DNS_NAME}
26
+ echo "dig ${_DNS_NAME} ... (without +trace)"
27
dig ${_DNS_NAME}
28
+ echo "cat /etc/resolv.conf"
29
+ cat /etc/resolv.conf
30
+ echo "ip route"
31
+ ip route
32
33
- id: run integration tests
34
name: python:${_VERSION}
0 commit comments