ci: fix ipv6 check

This commit is contained in:
Zxilly 2024-12-15 20:52:28 +08:00
parent fed0106839
commit d4a7ea9072
No known key found for this signature in database
GPG Key ID: 47AB1DEC841BC6A2

View File

@ -119,7 +119,7 @@ jobs:
sudo sysctl net.ipv6.conf.default.disable_ipv6
sudo sysctl net.ipv6.conf.lo.disable_ipv6
ping6 -c 4 ::1 || echo "::1 is not reachable" && exit 1
ping6 -c 4 ::1 || { echo "::1 is not reachable"; exit 1; }
- name: Run unit tests
run: |