forked from polynote/polynote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
370 lines (337 loc) · 13.8 KB
/
build.sbt
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
import java.io.File
import scala.util.Try
name := "polynote"
val buildUI: TaskKey[Unit] = taskKey[Unit]("Building UI...")
val distUI: TaskKey[Unit] = taskKey[Unit]("Building UI for distribution...")
val runAssembly: TaskKey[Unit] = taskKey[Unit]("Running spark server from assembly...")
val distFiles: TaskKey[Seq[File]] = taskKey[Seq[File]]("Distribution files")
val prepDistFiles: TaskKey[Seq[File]] = taskKey[Seq[File]]("Prepare distribution files")
val dependencyJars: TaskKey[Seq[(File, String)]] = taskKey("Dependency JARs which aren't included in the assembly")
val polynoteJars: TaskKey[Seq[(File, String)]] = taskKey("Polynote JARs")
val sparkVersion: SettingKey[String] = settingKey("Spark version")
val circeVersion: SettingKey[String] = settingKey("circe version")
val circeYamlVersion: SettingKey[String] = settingKey("circe-yaml version")
val sparkInstallLocation: SettingKey[String] = settingKey("Location of Spark installation(s)")
val sparkHome: SettingKey[String] = settingKey("Location of specific Spark installation to use for SPARK_HOME during tests")
val versions = new {
val coursier = "2.0.0-RC5-6"
val zio = "1.0.11"
}
lazy val nativeLibraryPath = {
val jepPath = sys.env.get("JEP_DIR") orElse Try {
import sys.process._
Seq("bash", "-c", "pip3 show jep |grep ^Location |cut -d' ' -f2")
.lineStream.toList
.headOption.map(_.trim)
.filterNot(_.isEmpty)
.map(_ + "/jep")
}.toOption.flatten orElse
sys.env.get("JAVA_LIBRARY_PATH") orElse
sys.env.get("LD_LIBRARY_PATH") orElse
sys.env.get("DYLD_LIBRARY_PATH") getOrElse "."
Seq(jepPath, ".").mkString(File.pathSeparator)
}
val distBuildDir = file(".") / "target" / "dist" / "polynote"
val scalaVersions = Seq("2.11.12", "2.12.12", "2.13.6")
lazy val scalaBinaryVersions = scalaVersions.map {
ver => ver.split('.').take(2).mkString(".")
}.distinct
val commonSettings = Seq(
scalaVersion := "2.11.12",
crossScalaVersions := scalaVersions,
organization := "org.polynote",
publishMavenStyle := true,
homepage := Some(url("https://polynote.org")),
licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")),
scmInfo := Some(
ScmInfo(
url("https://github.com/polynote/polynote"),
"scm:git@github.com:polynote/polynote.git"
)
),
version := "0.4.5",
publishTo := sonatypePublishToBundle.value,
developers := List(
Developer(id = "jeremyrsmith", name = "Jeremy Smith", email = "", url = url("https://github.com/jeremyrsmith")),
Developer(id = "jonathanindig", name = "Jonathan Indig", email = "", url = url("https://github.com/jonathanindig"))
),
scalacOptions ++= Seq(
"-language:higherKinds",
"-unchecked",
"-target:jvm-1.8"
) ++ (if (scalaBinaryVersion.value.startsWith("2.13")) Nil else Seq("-Ypartial-unification")),
fork in Test := true,
javaOptions in Test += s"-Djava.library.path=$nativeLibraryPath",
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test"
),
assemblyMergeStrategy in assembly := {
case PathList("META-INF", "CHANGES") => MergeStrategy.discard
case PathList("coursier", "shaded", xs @ _*) => MergeStrategy.first // coursier shades some of the same classes. assembly somehow can't dedupe even though they seem identical to me.
case PathList(_, "BuildInfo$.class") => MergeStrategy.discard
case x =>
val oldStrategy = (assemblyMergeStrategy in assembly).value
oldStrategy(x)
},
assemblyOption in assembly := {
(assemblyOption in assembly).value.copy(includeScala = false)
},
cancelable in Global := true,
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.10.3"),
buildUI := {
sys.process.Process(Seq("npm", "run", "build"), new java.io.File("./polynote-frontend/")) ! streams.value.log
},
distUI := {
sys.process.Process(Seq("npm", "run", "clean"), new java.io.File("./polynote-frontend/")) ! streams.value.log
sys.process.Process(Seq("npm", "run", "dist"), new java.io.File("./polynote-frontend/")) ! streams.value.log
},
distFiles := Nil,
prepDistFiles := {
val targetDir = distBuildDir / "deps" / scalaBinaryVersion.value
targetDir.mkdirs()
val sourceFiles = distFiles.value
val destFiles = sourceFiles.map {
file => targetDir / file.name
}
IO.copy(sourceFiles zip destFiles, overwrite = true, preserveLastModified = true, preserveExecutable = true)
destFiles
},
scalacOptions += "-deprecation",
test in assembly := {},
circeVersion := {
scalaBinaryVersion.value match {
case "2.13" | "2.12" => "0.12.2"
case "2.11" => "0.12.0-M3"
}
},
circeYamlVersion := {
scalaBinaryVersion.value match {
case "2.13" | "2.12" => "0.12.0"
case "2.11" => "0.11.0-M1"
}
}
)
lazy val `polynote-macros` = project.settings(
commonSettings,
libraryDependencies ++= Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"),
scalacOptions ++= Seq(
"-language:experimental.macros"
)
)
lazy val `polynote-runtime` = project.settings(
commonSettings,
scalacOptions ++= Seq(
"-language:experimental.macros"
),
libraryDependencies ++= Seq(
"black.ninia" % "jep" % "4.0.0",
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
),
distFiles := Seq(assembly.value)
).enablePlugins(BuildInfoPlugin)
.settings(
buildInfoKeys := Seq[BuildInfoKey](
name,
version,
scalaBinaryVersion,
BuildInfoKey.action("commit") {
git.gitHeadCommit.value.getOrElse("unknown")
},
BuildInfoKey.action("buildTime") {
System.currentTimeMillis
}
),
buildInfoPackage := "polynote.buildinfo"
).dependsOn(`polynote-macros`)
val `polynote-env` = project.settings(
commonSettings,
scalacOptions += "-language:experimental.macros",
libraryDependencies ++= Seq(
//"dev.zio" %% "zio-interop-cats" % versions.zioInterop % "provided",
"dev.zio" %% "zio" % versions.zio,
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
)
)
val `polynote-kernel` = project.settings(
commonSettings,
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided",
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "test",
"dev.zio" %% "zio" % versions.zio,
"dev.zio" %% "zio-streams" % versions.zio,
"org.scodec" %% "scodec-core" % "1.11.4",
"io.get-coursier" %% "coursier" % versions.coursier,
"io.get-coursier" %% "coursier-cache" % versions.coursier,
"io.github.classgraph" % "classgraph" % "4.8.47",
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.1",
"org.scala-lang.modules" %% "scala-java8-compat" % "0.9.0",
"io.circe" %% "circe-yaml" % circeYamlVersion.value,
"io.circe" %% "circe-generic" % circeVersion.value,
"io.circe" %% "circe-generic-extras" % circeVersion.value,
"io.circe" %% "circe-parser" % circeVersion.value,
"net.sf.py4j" % "py4j" % "0.10.7",
"org.scalamock" %% "scalamock" % "4.4.0" % "test"
),
distFiles := Seq(assembly.value) ++ (dependencyClasspath in Compile).value.collect {
case jar if jar.data.name.matches(".*scala-(library|reflect|compiler|collection-compat|xml).*") => jar.data
},
coverageExcludedPackages := "polynote\\.kernel\\.interpreter\\.python\\..*;polynote\\.runtime\\.python\\..*" // see https://github.com/scoverage/scalac-scoverage-plugin/issues/176
).dependsOn(`polynote-runtime` % "provided", `polynote-runtime` % "test", `polynote-env`)
val `polynote-server` = project.settings(
commonSettings,
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided",
"org.polynote" %% "uzhttp" % "0.2.8",
"com.vladsch.flexmark" % "flexmark" % "0.34.32",
"com.vladsch.flexmark" % "flexmark-ext-yaml-front-matter" % "0.34.32",
"org.slf4j" % "slf4j-simple" % "1.7.25"
),
//unmanagedResourceDirectories in Compile += (ThisBuild / baseDirectory).value / "polynote-frontend" / "dist",
packageBin := {
val _ = distUI.value
(packageBin in Compile).value
},
distFiles := Seq(assembly.value),
testOptions in Test += Tests.Argument("-oF")
).dependsOn(`polynote-runtime` % "provided", `polynote-runtime` % "test", `polynote-kernel` % "provided", `polynote-kernel` % "test->test")
val sparkVersions = Map(
"2.11" -> "2.1.1",
"2.12" -> "3.1.2",
"2.13" -> "3.2.0"
)
val sparkDistUrl: String => String = {
case "3.2.0" => "https://dist.apache.org/repos/dist/dev/spark/v3.2.0-rc1-bin"
case ver => s"https://archive.apache.org/dist/spark/spark-$ver/"
}
val pysparkVersion: String => String = {
case "3.2.0" => "3.1.2"
case ver => ver
}
val sparkSettings = Seq(
resolvers ++= {
Seq(MavenRepository(name = "Apache Staging", root = "https://repository.apache.org/content/repositories/staging"))
},
sparkVersion := sparkVersions(scalaBinaryVersion.value),
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-sql" % sparkVersion.value % "provided",
"org.apache.spark" %% "spark-repl" % sparkVersion.value % "provided",
"org.apache.spark" %% "spark-sql" % sparkVersion.value % "test",
"org.apache.spark" %% "spark-repl" % sparkVersion.value % "test"
),
sparkInstallLocation := {
sys.env.get("SPARK_INSTALL_LOCATION")
.getOrElse((file(".").getAbsoluteFile / "target" / "spark").getCanonicalPath)
},
sparkHome := {
(file(sparkInstallLocation.value) / s"spark-${sparkVersion.value}-bin-hadoop2.7").toString
},
Test / testOptions += Tests.Setup { () =>
import sys.process._
val baseDir = file(sparkInstallLocation.value)
val distVersion = sparkVersion.value
val pkgName = s"spark-$distVersion-bin-hadoop2.7"
val filename = s"$pkgName.tgz"
val distUrl = url(s"${sparkDistUrl(distVersion)}/$filename")
val destDir = baseDir / pkgName
if (!destDir.exists()) {
baseDir.mkdirs()
val pkgFile = baseDir / filename
if (!pkgFile.exists()) {
pkgFile.createNewFile()
println(s"Downloading $distUrl to $pkgFile...")
(distUrl #> (baseDir / filename)).!
}
println(s"Extracting $pkgFile to $baseDir")
Seq("tar", "-zxpf", (baseDir / filename).toString, "-C", baseDir.toString).!
}
},
Test / envVars ++= {
Map(
"SPARK_HOME" -> sparkHome.value,
"PATH" -> Seq(sparkHome, sys.env("PATH")).mkString(File.pathSeparator)
)
}
)
lazy val `polynote-spark-runtime` = project.settings(
commonSettings,
sparkSettings,
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided"
),
distFiles := Seq(assembly.value)
).dependsOn(`polynote-runtime` % "provided")
lazy val `polynote-spark` = project.settings(
commonSettings,
sparkSettings,
testOptions in Test += Tests.Argument("-oF"),
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided"
),
assemblyOption in assembly := {
(assemblyOption in assembly).value.copy(
includeScala = false,
prependShellScript = Some(
IO.read(file(".") / "scripts/polynote").linesIterator.toSeq
))
},
distFiles := Seq(assembly.value)
) dependsOn (
`polynote-kernel` % "provided",
`polynote-kernel` % "test->test",
`polynote-server` % "provided",
`polynote-spark-runtime` % "provided",
`polynote-spark-runtime` % "test",
`polynote-runtime` % "provided",
`polynote-runtime` % "test")
def waitForCommand(command: String): State => State = { st =>
// there *has* to be a better way to run a command and wait for it to finish...
var nextState = Command.process(command, st.copy(remainingCommands = Nil))
while (nextState.remainingCommands.nonEmpty) {
nextState = Command.process(nextState.remainingCommands.head.commandLine, nextState.copy(remainingCommands = nextState.remainingCommands.tail))
}
nextState.copy(remainingCommands = st.remainingCommands)
}
val dist = Command.command(
"dist",
"Perform cross-build and build distribution archive",
"Performs cross-build and builds a distribution archive in target/polynote-dist.tar.gz"
) {
state =>
val resultState = waitForCommand("+prepDistFiles")(state)
val examples = IO.listFiles(file(".") / "docs" / "examples").map(f => (f, s"polynote/examples/${f.getName}"))
val baseDir = file(".")
val targetDir = baseDir / "target"
val tarFile = targetDir / "polynote-dist.tar"
val outFile = targetDir / "polynote-dist.tar.gz"
if (tarFile.exists())
tarFile.delete()
if(outFile.exists())
outFile.delete()
val files = examples ++ List(
(file(".") / "config-template.yml") -> "polynote/config-template.yml",
(file(".") / "requirements.txt") -> "polynote/requirements.txt",
(file(".") / "scripts" / "plugin") -> "polynote/plugin",
(file(".") / "scripts" / "polynote.py") -> "polynote/polynote.py")
val distDir = targetDir / "dist"
val resolvedFiles = files.map {
case (srcFile, targetPath) => srcFile -> (distDir / targetPath)
}
scalaBinaryVersions.foreach {
binaryVersion =>
(distDir / "polynote" / "plugins" / binaryVersion).mkdirs()
(distDir / "polynote" / "plugins.d" / binaryVersion).mkdirs()
}
IO.copy(resolvedFiles, overwrite = true, preserveLastModified = true, preserveExecutable = true)
IO.copyDirectory(file(".") / "polynote-frontend" / "dist" / "static", distDir / "polynote" / "static")
import sys.process.stringSeqToProcess
println("Making archive")
Seq("tar", "-cf", tarFile.toString, "-C", distDir.toString, "polynote").!
Seq("gzip", "-S", ".gz", tarFile.toString).!
resultState
}
lazy val polynote = project.in(file(".")).aggregate(`polynote-env`, `polynote-runtime`, `polynote-spark-runtime`, `polynote-kernel`, `polynote-server`, `polynote-spark`)
.settings(
commonSettings,
commands ++= Seq(dist)
)