Skip to content

Commit c541b22

Browse files
committed
ci: Test IPv6 UDP but ignore failures
1 parent a7bed7f commit c541b22

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/kernel-test.yml

+25
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,21 @@ jobs:
198198
cat /host/nc.log | grep -q 'succeeded!'
199199
cat /host/dae.log | grep -F -- '-> [2606:4700:4700::1111]:80'
200200
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+
201216
- name: Setup LAN
202217
uses: cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
203218
with:
@@ -303,3 +318,13 @@ jobs:
303318
docker exec dae ip net e dae nc -v -w1 2606:4700:4700::1001 80 &> /host/nc.log
304319
cat /host/nc.log | grep -q 'succeeded!'
305320
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'

0 commit comments

Comments
 (0)