Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Aug 18, 2021
1 parent 1e3593c commit c11da77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_test_deploy.yml
Expand Up @@ -350,13 +350,13 @@ jobs:
# https://github.com/actions/virtual-environments/issues/1187
- name: tune linux network
run: sudo ethtool -K eth0 tx off rx off
if: ${{ matrix.os == "ubuntu-18.04" }}
if: ${{ matrix.os == 'ubuntu-18.04' }}
- name: tune windows network
run: Disable-NetAdapterChecksumOffload -Name * -TcpIPv4 -UdpIPv4 -TcpIPv6 -UdpIPv6
if: ${{ matrix.os == "windows-latest" }}
if: ${{ matrix.os == 'windows-latest' }}
- name: tune mac network
run: sudo sysctl -w net.link.generic.system.hwcksum_tx=0 && sudo sysctl -w net.link.generic.system.hwcksum_rx=0
if: ${{ matrix.os == "macos-latest" }}
if: ${{ matrix.os == 'macos-latest' }}

- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit c11da77

Please sign in to comment.