-
Notifications
You must be signed in to change notification settings - Fork 58
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
chore: fix intermittent timeouts in osx test runners #6007
Conversation
This pull request adds or modifies JavaScript ( |
@@ -60,12 +60,6 @@ jobs: | |||
deno-version: 'v1.46.3' | |||
fail-fast: false | |||
steps: | |||
# Increasing the maximum number of open files. See: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated, these steps don't seem to be relevant any longer
@@ -4,6 +4,7 @@ import { normalize, delimiter } from 'path' | |||
import { env } from 'process' | |||
import { fileURLToPath } from 'url' | |||
|
|||
import { default as build, startDev } from '@netlify/build' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated, hoisting the build import instead of asynchronously importing it since all fixtures use it anyhow
Summary
Fixes FRB-1555
OSX has less memory than the other test runners and the tests seem to be crawling to a halt when running with any concurrency. This update forces the tests to be run serially (no concurrency) on osx runners, but only in GithubActions (we didn't want to affect local development)