Skip to content

Commit

Permalink
tcp keepalive
Browse files Browse the repository at this point in the history
  • Loading branch information
furkansahin committed Feb 29, 2024
1 parent 6053286 commit b849279
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/verify-pr-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,11 @@ jobs:
srtool --version
- name: Configure Git to use HTTP/1.1
run: git config --global http.version HTTP/1.1
- name: Set tcp_keepalive
run: |
sudo sysctl -w net.ipv4.tcp_keepalive_time=60
sudo sysctl -w net.ipv4.tcp_keepalive_intvl=10
sudo sysctl -w net.ipv4.tcp_keepalive_probes=5
- name: Build Deterministic WASM
if: steps.cache-wasm.outputs.cache-hit != 'true'
run: |
Expand Down Expand Up @@ -468,6 +473,11 @@ jobs:
srtool --version
- name: Configure Git to use HTTP/1.1
run: git config --global http.version HTTP/1.1
- name: Set tcp_keepalive
run: |
sudo sysctl -w net.ipv4.tcp_keepalive_time=60
sudo sysctl -w net.ipv4.tcp_keepalive_intvl=10
sudo sysctl -w net.ipv4.tcp_keepalive_probes=5
- name: Build Deterministic WASM
if: steps.cache-wasm.outputs.cache-hit != 'true'
run: |
Expand Down Expand Up @@ -568,6 +578,11 @@ jobs:
srtool --version
- name: Configure Git to use HTTP/1.1
run: git config --global http.version HTTP/1.1
- name: Set tcp_keepalive
run: |
sudo sysctl -w net.ipv4.tcp_keepalive_time=60
sudo sysctl -w net.ipv4.tcp_keepalive_intvl=10
sudo sysctl -w net.ipv4.tcp_keepalive_probes=5
- name: Build Deterministic WASM
if: steps.cache-wasm.outputs.cache-hit != 'true'
run: |
Expand Down Expand Up @@ -668,6 +683,11 @@ jobs:
srtool --version
- name: Configure Git to use HTTP/1.1
run: git config --global http.version HTTP/1.1
- name: Set tcp_keepalive
run: |
sudo sysctl -w net.ipv4.tcp_keepalive_time=60
sudo sysctl -w net.ipv4.tcp_keepalive_intvl=10
sudo sysctl -w net.ipv4.tcp_keepalive_probes=5
- name: Build Deterministic WASM
if: steps.cache-wasm.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit b849279

Please sign in to comment.