-
Notifications
You must be signed in to change notification settings - Fork 309
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
Changes in CI and build.sbt #1631
Conversation
Great! I wanted to do that for a long time. This follows how things are done in tapir, right? One thing missing is mergify configuration so that merging steward PR works |
Yes, exactly. Sorry I forgot about .mergify config. |
- check-success=ci (JS1) | ||
- check-success=ci (JS2) | ||
- check-success=ci (Native) | ||
- check-success=ci (2.12, JVM) |
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.
2.11?
build.sbt
Outdated
lazy val rootProject = (project in file(".")) | ||
.settings(commonSettings: _*) | ||
.settings( | ||
publish / skip := true, | ||
name := "sttp", | ||
testJVM := (Test / test).all(filterProject(p => !p.contains("JS") && !p.contains("Native"))).value, | ||
testJS1 := (Test / test) | ||
.all(filterProject(p => p.contains("JS") && (p.contains("2_11") || p.contains("2_12")))) | ||
testJS2_11 := (Test / 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.
how does this differ from testScoped
?
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.
JS tests are run in different way then others there is a comment in ci file, it works the same way in tapir
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.
Hm which comment?
No description provided.