Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Test IPv6 UDP but ignore failures
Browse files Browse the repository at this point in the history
jschwinger233 committed Dec 30, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent a7bed7f commit c541b22
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/kernel-test.yml
Original file line number Diff line number Diff line change
@@ -198,6 +198,21 @@ jobs:
cat /host/nc.log | grep -q 'succeeded!'
cat /host/dae.log | grep -F -- '-> [2606:4700:4700::1111]:80'
- name: Check WAN IPv6 UDP
uses: cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
with:
provision: 'false'
cmd: |
set -ex
if docker exec dae dig @2001:4860:4860::8844 one.one.one.one; then
echo "Shouldn't succeed until https://github.com/daeuniverse/dae/issues/387 is resolved"
false
else
echo "Ingore failure until https://github.com/daeuniverse/dae/issues/387 is resolved"
true
fi
- name: Setup LAN
uses: cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
with:
@@ -303,3 +318,13 @@ jobs:
docker exec dae ip net e dae nc -v -w1 2606:4700:4700::1001 80 &> /host/nc.log
cat /host/nc.log | grep -q 'succeeded!'
cat /host/dae.log | grep -F -- '-> [2606:4700:4700::1001]:80'
- name: Check LAN IPv6 UDP
uses: cilium/little-vm-helper@908ab1ff8a596a03cd5221a1f8602dc44c3f906d # v0.0.12
with:
provision: 'false'
cmd: |
set -ex
docker exec dae ip net e dae dig @2001:4860:4860::8844 one.one.one.one
cat /host/dae.log | grep -F -- '-> [2001:4860:4860::8844]:53'

0 comments on commit c541b22

Please sign in to comment.