Cross build to 2.13 and Scala Native#34
Merged
olafurpg merged 5 commits intocom-lihaoyi:masterfrom Jul 8, 2017
Merged
Conversation
Closed
Previously, nothing ran on CI because the tests are not using an sbt test framework runner.
Scala.js 0.6.18 added support for JVM-style main functions which makes it possible to use the same entry point for the tests on all platforms.
It's important to skip publish in the root build to avoid publishing an empty package.
Scala Native currently only support 2.11. 2.12 support is expected in the next release but not 2.10. sbt-doge is an sbt plugin that adds two helpful commands to deal with the crossScalaVersions gaps in the native project: - `pls $SCALA_VERSION test`, like `++SCALA_VERSION test` except skip tests that don't define that SCALA_VERSION in crossScalaVersions. - `very test`, runs `test` for all projects for all crossScalaVersions defined for each individual project. Same works for publishing.
This was referenced Jul 8, 2017
Closed
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR builds on top of #30 and adds additional support for Scala Native, superseding #29.