Try installing linux dependencies directly
All checks were successful
Publish Builder Images / setup (push) Successful in 1s
Publish Builder Images / build-base (push) Successful in 33s
Publish Builder Images / build-targets (Dockerfile.linux, linux) (push) Successful in 7m14s
Publish Builder Images / build-targets (Dockerfile.windows, windows) (push) Successful in 3m26s

This commit is contained in:
2025-12-03 22:26:41 +01:00
parent fa0ed1d4f0
commit c1d5c8740b
2 changed files with 15 additions and 47 deletions

View File

@ -21,23 +21,6 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Debug Network MTU
run: |
# 1. Install diagnostic tools (Runner is Ubuntu/Debian based)
sudo apt-get update && sudo apt-get install -y iproute2 iputils-ping
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