-
Notifications
You must be signed in to change notification settings - Fork 138
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
Fix Spark cross publish #580
Fix Spark cross publish #580
Conversation
Codecov Report
@@ Coverage Diff @@
## master #580 +/- ##
=======================================
Coverage 95.14% 95.14%
=======================================
Files 65 65
Lines 1134 1134
Branches 12 5 -7
=======================================
Hits 1079 1079
Misses 55 55
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
2a1938c
to
6e4baab
Compare
55e1cc5
to
18abed3
Compare
18abed3
to
474a3f3
Compare
@@ -48,13 +50,18 @@ lazy val root = Project("frameless", file("." + "frameless")).in(file(".")) | |||
.settings( | |||
/** Not all Spark versions support Scala 2.13. These commands are launched for the supported subset of projects only. */ | |||
commands ++= Seq( | |||
commandCrossVersion("frameless-test")(projectsCrossVersion.map(_ + "/test") ::: projectsCrossVersion.map(_ + "/test/coverageReport"), "test" :: "coverageReport" :: Nil).value, | |||
// run tests separately for different Spark versions to reduce pressure on CI |
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.
Even locally it is challenging to run all of these tests in parallel
Mering it! Will publish a fresh release after testing snapshots. |
Checking artifacts today I notcied that
-spark3x
artifacts are emtpy 🤦This PR should address this issue, I'll release the
0.11.1
shortly after verifying that it works.The local publish now 100% works, still have no idea how it "worked" before 🤦, mb I checked only
core
imports (and it worked since in this case it is a common dep) and than I switched to3.2
usage.