-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Tweak Http4s in the CB #15773
Tweak Http4s in the CB #15773
Conversation
@@ -484,7 +484,7 @@ object projects: | |||
|
|||
lazy val catsEffect3 = SbtCommunityProject( | |||
project = "cats-effect-3", | |||
sbtTestCommand = "ciJVM", | |||
sbtTestCommand = "ciJVM; ciJS", |
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.
To help prevent JS-specific regressions e.g. #15494.
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.
Let's see how much slowdown this causes.
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.
Ugh, we can't even run these for annoying reasons (namely: an npm dependency). I don't think there's a clean workaround unless the idea in scala-js/scala-js-js-envs#20 (comment) lands which would allow us to drop the npm dep.
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.
sbtTestCommand = "ciJVM; ciJS", | |
sbtTestCommand = "ciJVM", |
sbtTestCommand = """set ThisBuild / tlFatalWarnings := false; server/test; client/test; ember-core/test; ember-server/test; ember-client/test; circe/test""", | ||
sbtTestCommand = """set ThisBuild / tlFatalWarnings := false; rootJVM/test""", |
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.
We slimmed down the http4s repo (it was previously a monorepo). So we should no longer need to pick-and-choose specific modules.
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.
Thanks for the simplification @armanbilge! LGTM
No description provided.