-
Notifications
You must be signed in to change notification settings - Fork 17
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
Cross-build for Scala Native #93
Conversation
could you add the native build to the lazy val root =
project
.in(file("."))
.aggregate(core.jvm, core.js, core.native, http4s.jvm, http4s.js, http4s.native, slf4j)
.settings(
publish / skip := true,
) |
Ah, yes, I was sure I did it. I think there's a way to get all axes without enumerating them, I'll update the PR later today. |
Just note that |
Ah. Nvm I'm thinking of scala versions. Maybe we just gotta leave out the suffix for the crossprojects? |
Not sure what you mean - the platform-specific suffix gets added automatically. Published artifacts look like this:
|
@hejfelix updated to include the aggregation - it's not super convenient syntax, but at least we don't have to list out all the individual platform-specific projects. |
Looks good to me now, I'll merge and cut a new release soon. Thank you very much for working on this 👌 |
Closes #92.