From 79864e065f4acffcddd97ad1a99540995c5d8c1e Mon Sep 17 00:00:00 2001 From: Dominic Saadi <32992335+jtoar@users.noreply.github.com> Date: Sat, 8 Jan 2022 20:24:22 -0800 Subject: [PATCH] Try fixing e2e network flakiness (#4082) * try fixing network flakiness * style: capitalize t in tune --- .github/workflows/e2e.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index e6f872535100..ae86f36b6872 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -23,6 +23,10 @@ jobs: with: node-version: ${{ matrix.node-version }} + # For network flakiness. See https://github.com/vercel/next.js/pull/28264 + - name: Tune linux network + run: sudo ethtool -K eth0 tx off rx off + - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)"