Add debug ping
Some checks failed
Publish Builder Images / setup (push) Successful in 2s
Publish Builder Images / build-base (push) Failing after 3s
Publish Builder Images / build-targets (Dockerfile.linux, linux) (push) Has been skipped
Publish Builder Images / build-targets (Dockerfile.windows, windows) (push) Has been skipped

This commit is contained in:
2025-12-03 18:52:08 +01:00
parent cd8de29892
commit b084abe7c8

View File

@ -21,6 +21,20 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Debug Network MTU
run: |
echo "--- Network Config ---"
ip link
echo "--- Testing Standard Packet (1400 bytes) - Should PASS ---"
ping -c 4 -M do -s 1400 github.com || echo "1400 failed"
echo "--- Testing Edge Packet (1450 bytes) - Should FAIL on Overlay ---"
ping -c 4 -M do -s 1450 github.com || echo "1450 failed as expected"
echo "--- Testing Full Packet (1472 bytes) - Should FAIL on Overlay ---"
ping -c 4 -M do -s 1472 github.com || echo "1472 failed as expected"
- name: Checkout
uses: actions/checkout@v3