Fix for curl timeout in GitHub Actions

This commit is contained in:
Jia Yuan Lo 2021-05-26 10:34:50 +08:00 committed by Krishna Kanhaiya
parent 150ec978fe
commit 391c5a2876
1 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,10 @@ jobs:
matrix:
target_arch: [aarch64, arm, i686, x86_64]
steps:
- name: Disable checksum offload
# https://github.com/actions/virtual-environments/issues/1187#issuecomment-686735760
# fix for curl timeout
run: sudo ethtool -K eth0 tx off rx off
- name: Clone repository
uses: actions/checkout@v2
with: