This repository was archived by the owner on May 4, 2025. It is now read-only.
File tree 2 files changed +7
-4
lines changed
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
19
19
20
20
val millVersions = Seq (" 0.12.4" , " 0.11.12" , " 0.10.15" )
21
21
val millBinaryVersions = millVersions.map(scalaNativeBinaryVersion)
22
- val scala213 = " 2.13.14 "
22
+ val scala213 = " 2.13.16 "
23
23
val artifactBase = " mill-github-dependency-graph"
24
24
25
25
def millBinaryVersion (millVersion : String ) = scalaNativeBinaryVersion(
@@ -102,7 +102,7 @@ trait ItestCross extends Cross.Module[String] with MillIntegrationTestModule {
102
102
103
103
override def testInvocations : T [Seq [(PathRef , Seq [TestInvocation .Targets ])]] =
104
104
T {
105
- val env = if (millTestVersion() >= " 0.12" )
105
+ val env = if (millTestVersion() >= " 0.12" )
106
106
Map (
107
107
" COURSIER_REPOSITORIES" -> s " central sonatype:releases ivy:file:// ${T .dest.toString.replaceFirst(" testInvocations" , " test" )}/ivyRepo/local/[organisation]/[module]/[revision]/[type]s/[artifact].[ext] "
108
108
)
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import munit.Assertions._
8
8
9
9
object overflow extends ScalaModule {
10
10
11
- def scalaVersion = " 2.13.14 "
11
+ def scalaVersion = " 2.13.16 "
12
12
13
13
// See https://github.com/ckipp01/mill-github-dependency-graph/issues/77 for the context
14
14
// 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 {
21
21
}
22
22
23
23
def 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
25
28
val expected = ujson.read(os.read(projectDir / " manifests.json" ))
26
29
27
30
val manifestMapping = Graph .generate(ev)()
You can’t perform that action at this time.
0 commit comments