forked from d2iq-archive/marathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
342 lines (316 loc) · 15.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
import java.time.ZoneOffset
import java.time.format.DateTimeFormatter
import java.time.LocalDate
import com.amazonaws.auth.{EnvironmentVariableCredentialsProvider, InstanceProfileCredentialsProvider}
import com.typesafe.sbt.SbtScalariform.ScalariformKeys
import com.typesafe.sbt.packager.docker.Cmd
import mesosphere.maven.MavenSettings.{loadM2Credentials, loadM2Resolvers}
import mesosphere.raml.RamlGeneratorPlugin
import sbt.Def
import sbt.Tests.SubProcess
import scalariform.formatter.preferences.{AlignArguments, AlignParameters, AlignSingleLineCaseStatements, CompactControlReadability, DanglingCloseParenthesis, DoubleIndentClassDeclaration, FormatXml, FormattingPreferences, IndentSpaces, IndentWithTabs, MultilineScaladocCommentsStartOnFirstLine, PlaceScaladocAsterisksBeneathSecondAsterisk, Preserve, PreserveSpaceBeforeArguments, SpaceBeforeColon, SpaceInsideBrackets, SpaceInsideParentheses, SpacesAroundMultiImports, SpacesWithinPatternBinders}
lazy val IntegrationTest = config("integration") extend Test
lazy val UnstableTest = config("unstable") extend Test
lazy val UnstableIntegrationTest = config("unstable-integration") extend Test
def formattingTestArg(target: File) = Tests.Argument("-u", target.getAbsolutePath, "-eDFG")
credentials ++= loadM2Credentials(streams.value.log)
resolvers ++= loadM2Resolvers(sLog.value)
resolvers += Resolver.sonatypeRepo("snapshots")
addCompilerPlugin("org.psywerx.hairyfotr" %% "linter" % "0.1.17")
lazy val formatSettings = SbtScalariform.scalariformSettings ++ Seq(
ScalariformKeys.preferences := FormattingPreferences()
.setPreference(AlignArguments, false)
.setPreference(AlignParameters, false)
.setPreference(AlignSingleLineCaseStatements, false)
.setPreference(CompactControlReadability, false)
.setPreference(DoubleIndentClassDeclaration, true)
.setPreference(DanglingCloseParenthesis, Preserve)
.setPreference(FormatXml, true)
.setPreference(IndentSpaces, 2)
.setPreference(IndentWithTabs, false)
.setPreference(MultilineScaladocCommentsStartOnFirstLine, false)
.setPreference(PlaceScaladocAsterisksBeneathSecondAsterisk, true)
.setPreference(PreserveSpaceBeforeArguments, true)
.setPreference(SpacesAroundMultiImports, true)
.setPreference(SpaceBeforeColon, false)
.setPreference(SpaceInsideBrackets, false)
.setPreference(SpaceInsideParentheses, false)
.setPreference(SpacesWithinPatternBinders, true)
)
lazy val testSettings =
inConfig(IntegrationTest)(Defaults.testTasks) ++
inConfig(UnstableTest)(Defaults.testTasks) ++
inConfig(UnstableIntegrationTest)(Defaults.testTasks) ++
Seq(
(coverageDir in Test) := target.value / "test-coverage",
(coverageDir in IntegrationTest) := target.value / "integration-coverage",
(coverageMinimum in IntegrationTest) := 58,
testWithCoverageReport in IntegrationTest := TestWithCoveragePlugin.runTestsWithCoverage(IntegrationTest).value,
(coverageDir in UnstableTest) := target.value / "unstable-coverage",
(coverageDir in UnstableIntegrationTest) := target.value / "unstable-integration-coverage",
testWithCoverageReport in UnstableTest := TestWithCoveragePlugin.runTestsWithCoverage(UnstableTest).value,
testWithCoverageReport in UnstableIntegrationTest := TestWithCoveragePlugin.runTestsWithCoverage(UnstableIntegrationTest).value,
testListeners := Seq(new PhabricatorTestReportListener(target.value / "phabricator-test-reports")),
parallelExecution in Test := true,
testForkedParallel in Test := true,
testOptions in Test := Seq(formattingTestArg(target.value / "test-reports"),
Tests.Argument("-l", "mesosphere.marathon.IntegrationTest",
"-l", "mesosphere.marathon.UnstableTest",
"-y", "org.scalatest.WordSpec")),
fork in Test := true,
parallelExecution in UnstableTest := true,
testForkedParallel in UnstableTest := true,
testOptions in UnstableTest := Seq(formattingTestArg(target.value / "test-reports" / "unstable"), Tests.Argument(
"-l", "mesosphere.marathon.IntegrationTest",
"-y", "org.scalatest.WordSpec")),
fork in UnstableTest := true,
fork in IntegrationTest := true,
testOptions in IntegrationTest := Seq(formattingTestArg(target.value / "test-reports" / "integration"),
Tests.Argument(
"-n", "mesosphere.marathon.IntegrationTest",
"-l", "mesosphere.marathon.UnstableTest",
"-y", "org.scalatest.WordSpec")),
parallelExecution in IntegrationTest := true,
testForkedParallel in IntegrationTest := true,
concurrentRestrictions in IntegrationTest := Seq(Tags.limitAll(math.max(1, java.lang.Runtime.getRuntime.availableProcessors() / 2))),
javaOptions in (IntegrationTest, test) ++= Seq(
"-Dakka.actor.default-dispatcher.fork-join-executor.parallelism-min=2",
"-Dakka.actor.default-dispatcher.fork-join-executor.factor=1",
"-Dakka.actor.default-dispatcher.fork-join-executor.parallelism-max=4",
"-Dscala.concurrent.context.minThreads=2",
"-Dscala.concurrent.context.maxThreads=32"
),
fork in UnstableIntegrationTest := true,
testOptions in UnstableIntegrationTest := Seq(formattingTestArg(target.value / "test-reports" / "unstable-integration"),
Tests.Argument(
"-n", "mesosphere.marathon.IntegrationTest",
"-y", "org.scalatest.WordSpec")),
parallelExecution in UnstableIntegrationTest := true,
testForkedParallel in UnstableIntegrationTest := true,
concurrentRestrictions in IntegrationTest := Seq(Tags.limitAll(math.max(1, java.lang.Runtime.getRuntime.availableProcessors() / 2))),
javaOptions in (UnstableIntegrationTest, test) ++= Seq(
"-Dakka.actor.default-dispatcher.fork-join-executor.parallelism-min=2",
"-Dakka.actor.default-dispatcher.fork-join-executor.factor=1",
"-Dakka.actor.default-dispatcher.fork-join-executor.parallelism-max=4",
"-Dscala.concurrent.context.minThreads=2",
"-Dscala.concurrent.context.maxThreads=32"
)
)
lazy val commonSettings = testSettings ++
aspectjSettings ++ Seq(
autoCompilerPlugins := true,
organization := "mesosphere.marathon",
scalaVersion := "2.11.11",
crossScalaVersions := Seq(scalaVersion.value),
scalacOptions in Compile ++= Seq(
"-encoding", "UTF-8",
"-target:jvm-1.8",
"-deprecation",
"-feature",
"-unchecked",
"-Xfuture",
"-Xlog-reflective-calls",
"-Xlint",
//FIXME: CORE-977 and MESOS-7368 are filed and need to be resolved to re-enable this
// "-Xfatal-warnings",
"-Yno-adapted-args",
"-Ywarn-numeric-widen",
//"-Ywarn-dead-code", We should turn this one on soon
"-Ywarn-inaccessible",
"-Ywarn-infer-any",
"-Ywarn-nullary-override",
"-Ywarn-nullary-unit",
//"-Ywarn-unused", We should turn this one on soon
"-Ywarn-unused-import",
//"-Ywarn-value-discard", We should turn this one on soon.
"-Yclosure-elim",
"-Ydead-code"
),
// Don't need any linting, etc for docs, so gain a small amount of build time there.
scalacOptions in (Compile, doc) := Seq("-encoding", "UTF-8", "-deprecation", "-feature", "-Xfuture"),
javacOptions in Compile ++= Seq(
"-encoding", "UTF-8", "-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"
),
resolvers ++= Seq(
"Typesafe Releases" at "https://repo.typesafe.com/typesafe/releases/",
"Apache Shapshots" at "https://repository.apache.org/content/repositories/snapshots/",
"Mesosphere Public Repo" at "https://downloads.mesosphere.com/maven"
),
cancelable in Global := true,
publishTo := Some(s3resolver.value(
"Mesosphere Public Repo (S3)",
s3("downloads.mesosphere.io/maven")
)),
s3credentials := new EnvironmentVariableCredentialsProvider() | new InstanceProfileCredentialsProvider(),
scapegoatVersion := "1.3.0",
coverageMinimum := 75,
coverageFailOnMinimum := true,
fork in run := true,
AspectjKeys.aspectjVersion in Aspectj := "1.8.10",
AspectjKeys.inputs in Aspectj += compiledClasses.value,
products in Compile := (products in Aspectj).value,
products in Runtime := (products in Aspectj).value,
products in Compile := (products in Aspectj).value,
AspectjKeys.showWeaveInfo := true,
AspectjKeys.verbose := true,
// required for AJC compile time weaving
javacOptions in Compile += "-g",
javaOptions in run ++= (AspectjKeys.weaverOptions in Aspectj).value,
javaOptions in Test ++= (AspectjKeys.weaverOptions in Aspectj).value,
git.useGitDescribe := true,
// TODO: There appears to be a bug where uncommitted changes is true even if nothing is committed.
git.uncommittedSignifier := None
)
lazy val packageDebianUpstart = taskKey[File]("Create debian upstart package")
lazy val packageDebianSystemV = taskKey[File]("Create debian systemv package")
lazy val packageDebianSystemd = taskKey[File]("Create debian systemd package")
lazy val packageRpmSystemV = taskKey[File]("Create rpm systemv package")
lazy val packageRpmSystemd = taskKey[File]("create rpm systemd package")
lazy val packagingSettings = Seq(
packageSummary := "Scheduler for Apache Mesos",
packageDescription := "Cluster-wide init and control system for services running on\\\n\tApache Mesos",
maintainer := "Mesosphere Package Builder <[email protected]>",
debianPackageDependencies in Debian := Seq("java8-runtime-headless", "lsb-release", "unzip", s"mesos (>= ${Dependency.V.MesosDebian})"),
rpmVendor := "mesosphere",
rpmLicense := Some("Apache 2"),
version in Rpm := {
val releasePattern = """^(\d+)\.(\d+)\.(\d+)$""".r
val snapshotPattern = """^(\d+).(\d+)\.(\d+)-SNAPSHOT-\d+-g(\w+)""".r
version.value match {
case releasePattern(major, minor, patch) => s"$major.$minor.$patch"
case snapshotPattern(major, minor, patch, commit) => s"$major.$minor.$patch${LocalDate.now(ZoneOffset.UTC).format(DateTimeFormatter.BASIC_ISO_DATE)}git$commit"
case v =>
System.err.println(s"Version '$v' is not fully supported, please update the git tags.")
v
}
},
daemonStdoutLogFile := None,
debianChangelog in Debian := Some(baseDirectory.value / "changelog.md"),
rpmRequirements in Rpm := Seq("coreutils", "unzip", "java >= 1:1.8.0"),
dockerBaseImage := Dependency.V.OpenJDK,
dockerExposedPorts := Seq(8080),
dockerRepository := Some("mesosphere"),
daemonUser in Docker := "root",
dockerCommands ++= Seq(
Cmd("RUN", "apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E56151BF && " +
"echo deb http://repos.mesosphere.com/debian jessie-testing main | tee -a /etc/apt/sources.list.d/mesosphere.list && " +
"echo deb http://repos.mesosphere.com/debian jessie main | tee -a /etc/apt/sources.list.d/mesosphere.list && " +
"apt-get update && " +
s"apt-get install --no-install-recommends -y --force-yes mesos=${Dependency.V.MesosDebian} && " +
"apt-get clean"
),
Cmd("RUN", "chown -R daemon:daemon ."),
Cmd("USER", "daemon")
),
bashScriptExtraDefines +=
"""
|for env_op in `env | grep -v ^MARATHON_APP | grep ^MARATHON_ | awk '{gsub(/MARATHON_/,""); gsub(/=/," "); printf("%s%s ", "--", tolower($1)); for(i=2;i<=NF;i++){printf("%s ", $i)}}'`; do
| addApp "$env_op"
|done
""".stripMargin,
packageDebianUpstart := {
val debianFile = (packageBin in Debian).value
val output = target.value / "packages" / s"upstart-${debianFile.getName}"
IO.move(debianFile, output)
streams.value.log.info(s"Moved debian ${(serverLoading in Debian).value} package $debianFile to $output")
output
},
packageDebianSystemV := {
val debianFile = (packageBin in Debian).value
val output = target.value / "packages" / s"sysvinit-${debianFile.getName}"
IO.move(debianFile, output)
streams.value.log.info(s"Moved debian ${(serverLoading in Debian).value} package $debianFile to $output")
output
},
packageDebianSystemd := {
val debianFile = (packageBin in Debian).value
val output = target.value / "packages" / s"systemd-${debianFile.getName}"
IO.move(debianFile, output)
streams.value.log.info(s"Moving debian ${(serverLoading in Debian).value} package $debianFile to $output")
output
},
packageRpmSystemV := {
val rpmFile = (packageBin in Rpm).value
val output = target.value / "packages" / s"sysvinit-${rpmFile.getName}"
IO.move(rpmFile, output)
streams.value.log.info(s"Moving rpm ${(serverLoading in Rpm).value} package $rpmFile to $output")
output
},
packageRpmSystemd := {
val rpmFile = (packageBin in Rpm).value
val output = target.value / "packages" / s"systemd-${rpmFile.getName}"
IO.move(rpmFile, output)
streams.value.log.info(s"Moving rpm ${(serverLoading in Rpm).value} package $rpmFile to $output")
output
},
mappings in (Compile, packageDoc) := Seq()
)
addCommandAlias("packageAll", ";universal:packageBin; universal:packageXzTarball; docker:publishLocal; packageDebian; packageRpm")
addCommandAlias("packageDebian", ";set serverLoading in Debian := com.typesafe.sbt.packager.archetypes.ServerLoader.SystemV" +
";packageDebianSystemV" +
";set serverLoading in Debian := com.typesafe.sbt.packager.archetypes.ServerLoader.Upstart" +
";packageDebianUpstart" +
";set serverLoading in Debian := com.typesafe.sbt.packager.archetypes.ServerLoader.Systemd" +
";packageDebianSystemd")
addCommandAlias("packageRpm", ";set serverLoading in Rpm := com.typesafe.sbt.packager.archetypes.ServerLoader.SystemV" +
";packageRpmSystemV" +
";set serverLoading in Rpm := com.typesafe.sbt.packager.archetypes.ServerLoader.Systemd" +
";packageRpmSystemd")
lazy val `plugin-interface` = (project in file("plugin-interface"))
.enablePlugins(GitBranchPrompt, CopyPasteDetector, BasicLintingPlugin, TestWithCoveragePlugin)
.configs(IntegrationTest)
.configs(UnstableTest)
.configs(UnstableIntegrationTest)
.settings(commonSettings : _*)
.settings(formatSettings : _*)
.settings(
name := "plugin-interface",
libraryDependencies ++= Dependencies.pluginInterface
)
lazy val marathon = (project in file("."))
.configs(IntegrationTest)
.configs(UnstableTest)
.configs(UnstableIntegrationTest)
.enablePlugins(GitBranchPrompt, JavaServerAppPackaging, DockerPlugin, DebianPlugin, RpmPlugin, JDebPackaging,
CopyPasteDetector, RamlGeneratorPlugin, BasicLintingPlugin, GitVersioning, TestWithCoveragePlugin)
.dependsOn(`plugin-interface`)
.settings(commonSettings: _*)
.settings(formatSettings: _*)
.settings(packagingSettings: _*)
.settings(
unmanagedResourceDirectories in Compile += file("docs/docs/rest-api"),
libraryDependencies ++= Dependencies.marathon,
sourceGenerators in Compile += (ramlGenerate in Compile).taskValue,
scapegoatIgnoredFiles ++= Seq(s"${sourceManaged.value.getPath}/.*"),
mainClass in Compile := Some("mesosphere.marathon.Main"),
packageOptions in (Compile, packageBin) ++= Seq(
Package.ManifestAttributes("Implementation-Version" -> version.value ),
Package.ManifestAttributes("Scala-Version" -> scalaVersion.value ),
Package.ManifestAttributes("Git-Commit" -> git.gitHeadCommit.value.getOrElse("unknown") )
)
)
lazy val `mesos-simulation` = (project in file("mesos-simulation"))
.configs(IntegrationTest)
.configs(UnstableTest)
.configs(UnstableIntegrationTest)
.enablePlugins(GitBranchPrompt, CopyPasteDetector, BasicLintingPlugin, TestWithCoveragePlugin)
.settings(commonSettings: _*)
.settings(formatSettings: _*)
.dependsOn(marathon % "compile->compile; test->test")
.settings(
name := "mesos-simulation"
)
// see also, benchmark/README.md
lazy val benchmark = (project in file("benchmark"))
.configs(IntegrationTest)
.configs(UnstableTest)
.configs(UnstableIntegrationTest)
.enablePlugins(JmhPlugin, GitBranchPrompt, CopyPasteDetector, BasicLintingPlugin, TestWithCoveragePlugin)
.settings(commonSettings : _*)
.settings(formatSettings: _*)
.dependsOn(marathon % "compile->compile; test->test")
.settings(
testOptions in Test += Tests.Argument(TestFrameworks.JUnit),
libraryDependencies ++= Dependencies.benchmark,
generatorType in Jmh := "asm"
)