Replies: 4 comments 4 replies
-
|
Sounds like #6224, which should be fixed in 1.1.0-RC3. But it looks like you're already on 1.1.0-RC3. Can you show us the output of |
Beta Was this translation helpful? Give feedback.
-
|
Should be fixed in the main branch by #6348 There were also some other issues with your build file that I have fixed for you below import mill.scalalib.*
import mill.javalib.*
object `package`
extends SbtModule:
outer =>
def scalaVersion = "3.7.4"
def jvmVersion = "25"
def mvnDeps =
mvn"org.scala-lang:scala3-library_3:${scalaVersion()}" ::
mvn"com.github.plokhotnyuk.jsoniter-scala:jsoniter-scala-core_3:$vJsoniter" ::
mvn"com.typesafe.scala-logging:scala-logging_3:$vScalaLogging" ::
mvn"ch.qos.logback:logback-classic:$vLogback" ::
mvn"org.ngengine:bech32:$vBech32" ::
mvn"org.eclipse.jetty.ee10:jetty-ee10-servlet:$vJetty" ::
mvn"org.eclipse.jetty:jetty-server:$vJetty" ::
mvn"org.eclipse.jetty:jetty-util:$vJetty" ::
mvn"org.scalatra:scalatra-jakarta_3:$vScalatra" ::
mvn"com.frostwire:jlibtorrent:$vJLibTorrent" ::
mvn"com.frostwire:jlibtorrent-linux-x86_64:$vJLibTorrent" ::
mvn"com.frostwire:jlibtorrent-windows:$vJLibTorrent" ::
mvn"fr.acinq.secp256k1:secp256k1-kmp:$vSecp256k1" ::
mvn"fr.acinq.secp256k1:secp256k1-kmp-jvm:$vSecp256k1" ::
mvn"fr.acinq.secp256k1:secp256k1-kmp-jni-jvm:$vSecp256k1" ::
Nil
def compileMvnDeps = super.compileMvnDeps() ++ {
mvn"com.github.plokhotnyuk.jsoniter-scala:jsoniter-scala-macros_3:$vJsoniter" ::
Nil
}
def javacOptions = super.javacOptions() ++ {
"-source" :: jvmVersion ::
"-target" :: jvmVersion ::
Nil
}
def jvmId = s"zulu:$jvmVersion"
def repositories = super.repositories() ++ {
"https://dl.frostwire.com/maven" ::
Nil
}
object test
extends SbtTests
with TestModule.ScalaTest:
def mvnDeps = outer.mvnDeps() ++ {
mvn"org.scalatest:scalatest_3:$vScalaTest" ::
mvn"com.vladsch.flexmark:flexmark-all:$vFlexmark" ::
mvn"org.bitcoin-s:bitcoin-s-core_2.13:$vBitcoinS" ::
Nil
}
def testParallelism = false
def testSandboxWorkingDir = false
// Dependency versions:
def vJsoniter = "2.38.4"
def vScalaLogging = "3.9.4"
def vLogback = "1.5.20"
def vBech32 = "1.0.3"
def vJetty = "12.1.4"
def vScalatra = "3.1.2"
def vJLibTorrent = "2.0.12.7"
def vSecp256k1 = "0.21.0"
def vScalaTest = "3.2.19"
def vFlexmark = "0.64.8"
def vBitcoinS = "1.9.11" |
Beta Was this translation helpful? Give feedback.
-
|
Ok, the latest version Stuck.Mill.Test.av1.mp4I've attached the jstack dumps and a video showing the behavior. |
Beta Was this translation helpful? Give feedback.
-
|
@nilskp 1.1.0-RC3-30-8575ac does not contain the latest commits, will ping you when there's a release that does |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
So, after watching the ScalaDays presentation, I decided to take a brand new project can port it from Gradle to Mill.
However, the test, which runs fine under Gradle, never completes in Mill.
The project (with working Gradle build) is here:
https://github.com/bulletproof-ninja/nostrrent
And the Mill branch is here:
https://github.com/bulletproof-ninja/nostrrent/tree/build/mill
Beta Was this translation helpful? Give feedback.
All reactions