File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed
Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -236,14 +236,19 @@ jobs:
236236 popd
237237
238238 harmony-har-build :
239- runs-on : lynx-container
239+ runs-on : lynx-custom-dind
240240 container :
241241 image : ghcr.io/lynx-family/ubuntu24.04-harmony:lastest
242242 options : --cap-add=NET_ADMIN
243243 credentials :
244244 username : lynx-family
245245 password : ${{ secrets.GITHUB_TOKEN }}
246246 steps :
247+ - name : Set MTU
248+ run : |
249+ sudo apt-get update && sudo apt-get install --no-install-recommends -y iproute2
250+ sudo ip link set dev eth0 mtu 1450
251+ echo "MTU set successfully"
247252 - name : Python Setup
248253 uses : actions/setup-python@v5
249254 with :
@@ -271,14 +276,19 @@ jobs:
271276 popd
272277
273278 harmony-hap-build :
274- runs-on : lynx-container
279+ runs-on : lynx-custom-dind
275280 container :
276281 image : ghcr.io/lynx-family/ubuntu24.04-harmony:lastest
277282 options : --cap-add=NET_ADMIN
278283 credentials :
279284 username : lynx-family
280285 password : ${{ secrets.GITHUB_TOKEN }}
281286 steps :
287+ - name : Set MTU
288+ run : |
289+ sudo apt-get update && sudo apt-get install --no-install-recommends -y iproute2
290+ sudo ip link set dev eth0 mtu 1450
291+ echo "MTU set successfully"
282292 - name : Python Setup
283293 uses : actions/setup-python@v5
284294 with :
Original file line number Diff line number Diff line change 77
88jobs :
99 harmony-release :
10- runs-on : lynx-container
10+ runs-on : lynx-custom-dind
1111 container :
1212 image : ghcr.io/lynx-family/ubuntu24.04-harmony:lastest
1313 options : --cap-add=NET_ADMIN
1414 credentials :
1515 username : lynx-family
1616 password : ${{ secrets.GITHUB_TOKEN }}
1717 steps :
18+ - name : Set MTU
19+ run : |
20+ sudo apt install --no-install-recommends -y iproute2
21+ sudo ip link set dev eth0 mtu 1450 # remain 50 for k8s overlay
22+ echo "MTU set successfully"
1823 - name : Install Rust toolchain
1924 uses : actions-rs/toolchain@v1
2025 with :
You can’t perform that action at this time.
0 commit comments