Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try fixing e2e network flakiness #4082

Merged
merged 3 commits into from Jan 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/e2e.yaml
Expand Up @@ -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
Comment on lines +27 to +28
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this works, we should add to add workflows, setting a condition to run in case of Linux only.


- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
Expand Down