This repository was archived by the owner on May 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import io.kipp.mill.ci.release.SonatypeHost
1919
2020val millVersions = Seq (" 0.12.4" , " 0.11.12" , " 0.10.15" )
2121val millBinaryVersions = millVersions.map(scalaNativeBinaryVersion)
22- val scala213 = " 2.13.14 "
22+ val scala213 = " 2.13.16 "
2323val artifactBase = " mill-github-dependency-graph"
2424
2525def millBinaryVersion (millVersion : String ) = scalaNativeBinaryVersion(
@@ -102,7 +102,7 @@ trait ItestCross extends Cross.Module[String] with MillIntegrationTestModule {
102102
103103 override def testInvocations : T [Seq [(PathRef , Seq [TestInvocation .Targets ])]] =
104104 T {
105- val env = if (millTestVersion() >= " 0.12" )
105+ val env = if (millTestVersion() >= " 0.12" )
106106 Map (
107107 " COURSIER_REPOSITORIES" -> s " central sonatype:releases ivy:file:// ${T .dest.toString.replaceFirst(" testInvocations" , " test" )}/ivyRepo/local/[organisation]/[module]/[revision]/[type]s/[artifact].[ext] "
108108 )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import munit.Assertions._
88
99object overflow extends ScalaModule {
1010
11- def scalaVersion = " 2.13.14 "
11+ def scalaVersion = " 2.13.16 "
1212
1313 // See https://github.com/ckipp01/mill-github-dependency-graph/issues/77 for the context
1414 // of this test. The main issue is that when you look at the children of this dep in coursier
@@ -21,7 +21,10 @@ object overflow extends ScalaModule {
2121}
2222
2323def checkManifest (ev : Evaluator ) = T .command {
24- val projectDir = Iterator .iterate(os.pwd)(_ / os.up).find(dir => os.exists(dir / " manifests.json" )).get
24+ val projectDir = Iterator
25+ .iterate(os.pwd)(_ / os.up)
26+ .find(dir => os.exists(dir / " manifests.json" ))
27+ .get
2528 val expected = ujson.read(os.read(projectDir / " manifests.json" ))
2629
2730 val manifestMapping = Graph .generate(ev)()
You can’t perform that action at this time.
0 commit comments