-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.sc
183 lines (158 loc) · 6.79 KB
/
build.sc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
// mill plugins
import $ivy.`com.lihaoyi::mill-contrib-scoverage:`
import $ivy.`de.tototec::de.tobiasroeser.mill.integrationtest::0.7.1`
import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version::0.4.0`
// imports
import scala.util.matching.Regex
import de.tobiasroeser.mill.integrationtest.{MillIntegrationTestModule, TestCase, TestInvocation}
import de.tobiasroeser.mill.vcs.version.VcsVersion
import mill._
import mill.contrib.scoverage.ScoverageModule
import mill.define.{Command, Sources, Target, Task, TaskModule}
import mill.scalalib._
import mill.scalalib.publish._
import os.Path
import scala.util.Properties
lazy val baseDir: os.Path = build.millSourcePath
lazy val rtMillVersion = build.version()
sealed trait CrossConfig {
def millPlatform: String
def minMillVersion: String
def scalaVersion: String = "2.13.15"
def testWithMill: Seq[String] = Seq(minMillVersion)
def osLibVersion: String
}
val millApiCrossVersions = Seq(
new CrossConfig {
override def millPlatform = "0.11"
override def minMillVersion: String = "0.11.0" // scala-steward:off
override def testWithMill: Seq[String] = Seq("0.11.8", minMillVersion)
override def osLibVersion: String = "0.9.1"
},
new CrossConfig {
override def millPlatform = "0.10"
override def minMillVersion: String = "0.10.0" // scala-steward:off
override def testWithMill: Seq[String] = Seq("0.10.12", minMillVersion)
override def osLibVersion: String = "0.8.0"
},
new CrossConfig {
override def millPlatform = "0.9"
override def minMillVersion: String = "0.9.3" // scala-steward:off
override def testWithMill =
Seq("0.9.12", "0.9.8", minMillVersion)
override def osLibVersion: String = "0.7.1"
}
)
object Deps {
val scoverageVersion = "2.2.1"
val scoveragePlugin = ivy"org.scoverage:::scalac-scoverage-plugin:${scoverageVersion}"
val scoverageRuntime = ivy"org.scoverage::scalac-scoverage-runtime:${scoverageVersion}"
}
// Tuple: Mill platform -> CrossConfig
val matrix = millApiCrossVersions.map(x => x.millPlatform -> x).toMap
object integrationtest extends Cross[IntegrationtestCross](millApiCrossVersions.map(_.millPlatform))
trait IntegrationtestCross extends CrossScalaModule with PublishModule with ScoverageModule with Cross.Module[String] {
outer =>
def millPlatform = crossValue
private val crossConfig = matrix(millPlatform)
override def publishVersion = VcsVersion.vcsState().format()
override def crossScalaVersion = crossConfig.scalaVersion
override def artifactSuffix = s"_mill${crossConfig.millPlatform}_${artifactScalaVersion()}"
override def artifactName = s"de.tobiasroeser.mill.integrationtest"
override def sources = T.sources {
super.sources() ++ Seq(PathRef(millSourcePath / s"src-${millPlatform.split("[.]").take(2).mkString(".")}"))
}
override def compileIvyDeps = Agg(
// scala-steward:off
ivy"com.lihaoyi::os-lib:${crossConfig.osLibVersion}",
ivy"com.lihaoyi::mill-main:${crossConfig.minMillVersion}",
ivy"com.lihaoyi::mill-scalalib:${crossConfig.minMillVersion}"
// scala-steward:on
)
override def scoverageVersion = Deps.scoverageVersion
object test extends ScalaModuleTests with ScoverageTests with TestModule.ScalaTest {
override def ivyDeps = Agg(
ivy"org.scalatest::scalatest:3.2.19",
ivy"org.scalatestplus::scalacheck-1-16:3.2.14.0"
) ++ outer.compileIvyDeps()
}
override def javacOptions =
(if (Properties.isJavaAtLeast(9)) Seq()
else Seq("-source", "1.8", "-target", "1.8")) ++
Seq("-encoding", "UTF-8", "-deprecation")
override def scalacOptions = Seq("-release", "8", "-encoding", "UTF-8", "-deprecation")
override def pomSettings = PomSettings(
description = "A integration test module useful for mill module development",
organization = "de.tototec",
url = "https://github.com/lefou/mill-integrationtest",
licenses = Seq(License.`Apache-2.0`),
versionControl = VersionControl.github("lefou", "mill-integrationtest"),
developers = Seq(
Developer("lefou", "Tobias Roeser", "https://github.com/lefou")
)
)
override def resources = T.sources {
super.resources() ++ Seq(
PathRef(millSourcePath / os.up / "README.adoc"),
PathRef(millSourcePath / os.up / "LICENSE")
)
}
override def skipIdea: Boolean = crossConfig != millApiCrossVersions.head
}
// Tuple: Mill version -> CrossConfig
val itestMillVersions = millApiCrossVersions.flatMap(x => x.testWithMill.map(_ -> x))
object itest extends Cross[ItestCross](itestMillVersions.map(_._1)) with TaskModule {
override def defaultCommandName(): String = "test"
def testCached: T[Seq[TestCase]] = itest(itestMillVersions.map(_._1).head).testCached
def test(args: String*): Command[Seq[TestCase]] = itest(itestMillVersions.map(_._1).head).test(args: _*)
}
trait ItestCross extends MillIntegrationTestModule with Cross.Module[String] {
def millVersion = crossValue
// correct cross level
private val crossConfig = itestMillVersions.toMap.apply(millVersion)
override def pluginsUnderTest: Seq[PublishModule] = Seq(integrationtest(crossConfig.millPlatform))
override def millTestVersion: T[String] = millVersion
override def testInvocations: Target[Seq[(PathRef, Seq[TestInvocation.Targets])]] = Seq(
PathRef(millSourcePath / "src" / "01-simple") -> Seq(
// test with debug print and explicit test target
TestInvocation.Targets(Seq("-d", "itest.test")),
// test default target
TestInvocation.Targets(Seq("itest2"))
)
)
/** Replaces the plugin jar with a scoverage-enhanced version of it. */
override def pluginUnderTestDetails: Task[Seq[(PathRef, (PathRef, (PathRef, (PathRef, (PathRef, Artifact)))))]] =
Target.traverse(pluginsUnderTest) { p =>
val jar = p match {
case p: ScoverageModule => p.scoverage.jar
case p => p.jar
}
jar zip (p.sourceJar zip (p.docJar zip (p.pom zip (p.ivy zip p.artifactMetadata))))
}
override def perTestResources = T.sources { Seq(generatedSharedSrc()) }
def generatedSharedSrc = T {
os.write(
T.dest / "shared.sc",
s"""import $$ivy.`${Deps.scoverageRuntime.dep.module.organization.value}::${Deps.scoverageRuntime.dep.module.name.value}:${Deps.scoverageRuntime.dep.version}`
|""".stripMargin
)
PathRef(T.dest)
}
}
object P extends Module {
/**
* Update the millw script.
*/
def millw() = T.command {
val target = mill.util.Util.download("https://raw.githubusercontent.com/lefou/millw/master/millw")
val millw = baseDir / "millw"
val res = os.proc(
"sed",
s"""s,\\(^DEFAULT_MILL_VERSION=\\).*$$,\\1${Regex.quoteReplacement(rtMillVersion())},""",
target.path.toIO.getAbsolutePath()
).call(cwd = baseDir)
os.write.over(millw, res.out.text())
os.perms.set(millw, os.perms(millw) + java.nio.file.attribute.PosixFilePermission.OWNER_EXECUTE)
target
}
}