File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -198,6 +198,21 @@ jobs:
198
198
cat /host/nc.log | grep -q 'succeeded!'
199
199
cat /host/dae.log | grep -F -- '-> [2606:4700:4700::1111]:80'
200
200
201
+ - name : Check WAN IPv6 UDP
202
+ uses : cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
203
+ with :
204
+ provision : ' false'
205
+ cmd : |
206
+ set -ex
207
+
208
+ if docker exec dae dig @2001:4860:4860::8844 one.one.one.one; then
209
+ echo "Shouldn't succeed until https://github.com/daeuniverse/dae/issues/387 is resolved"
210
+ false
211
+ else
212
+ echo "Ingore failure until https://github.com/daeuniverse/dae/issues/387 is resolved"
213
+ true
214
+ fi
215
+
201
216
- name : Setup LAN
202
217
uses : cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
203
218
with :
@@ -303,3 +318,13 @@ jobs:
303
318
docker exec dae ip net e dae nc -v -w1 2606:4700:4700::1001 80 &> /host/nc.log
304
319
cat /host/nc.log | grep -q 'succeeded!'
305
320
cat /host/dae.log | grep -F -- '-> [2606:4700:4700::1001]:80'
321
+
322
+ - name : Check LAN IPv6 UDP
323
+ uses : cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
324
+ with :
325
+ provision : ' false'
326
+ cmd : |
327
+ set -ex
328
+
329
+ docker exec dae ip net e dae dig @2001:4860:4860::8844 one.one.one.one
330
+ cat /host/dae.log | grep -F -- '-> [2001:4860:4860::8844]:53'
You can’t perform that action at this time.
0 commit comments