-
Notifications
You must be signed in to change notification settings - Fork 348
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
Scala Native support #1381
Scala Native support #1381
Conversation
…nored a test folder on native only (with sbt setting) because of a Scala Native bug.
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.
@lolgab Nice job.
I think it is a nice touch to add something like this towards the top of the build as it promotes DRY later in the build.
lazy val scala211 = "2.11.12"
lazy val scala212 = "2.12.8"
lazy val scala213 = "2.13.0-M5"
Checked out this branch and updated build in #1443. |
I think we should wait to merge because they are releasing Scala Native 0.4.0-M1 and we can do a crossbuild to support both 0.4.x and 0.3.x using some environmental variable like scala-js does for cross build to 0.6 and 1.0. |
@lolgab It's failing on |
I'm not aware of any Scala Native specific problem. |
@lolgab That's really odd. The build fails in
This is the line it doesn't like:
Have you ever seen this issue before? |
Add |
Lorenzo Gabriele seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Initial Scala Native support for quill-core and quill-sql modules.
There is no Scalatest 3.0.x for Scala Native so I used 3.1.0-SNAP7 for Scala Native and old Scalatest for JVM and JS platforms ( default technique to port to Scala Native)
Notes
Ignored a test folder on native only because of a bug of Scala Native triggered by a test.
Did it with this sbt setting:
@getquill/maintainers