forked from ucb-bar/dsptools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
116 lines (104 loc) · 3.48 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
// SPDX-License-Identifier: Apache-2.0
git.remoteRepo := "[email protected]:ucb-bar/dsptools.git"
enablePlugins(SiteScaladocPlugin)
enablePlugins(GhpagesPlugin)
def scalacOptionsVersion(scalaVersion: String): Seq[String] = {
Seq() ++ {
// If we're building with Scala > 2.11, enable the compile option
// switch to support our anonymous Bundle definitions:
// https://github.com/scala/bug/issues/10047
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor: Long)) if scalaMajor < 12 => Seq()
case _ => Seq("-Xsource:2.11")
}
}
}
def javacOptionsVersion(scalaVersion: String): Seq[String] = {
Seq() ++ {
// Scala 2.12 requires Java 8. We continue to generate
// Java 7 compatible code for Scala 2.11
// for compatibility with old clients.
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor: Long)) if scalaMajor < 12 =>
Seq("-source", "1.7", "-target", "1.7")
case _ =>
Seq("-source", "1.8", "-target", "1.8")
}
}
}
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"chisel-iotesters" -> "1.5.3",
"dsptools" -> "1.4.3",
"rocketchip" -> "1.2-SNAPSHOT",
"api-config-chipsalliance"-> "1.2-SNAPSHOT"
)
name := "rocket-dsp-utils"
val commonSettings = Seq(
organization := "edu.berkeley.cs",
version := "0.5-SNAPSHOT",
autoAPIMappings := true,
scalaVersion := "2.12.13",
crossScalaVersions := Seq("2.12.13"),
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-language:reflectiveCalls") ++ scalacOptionsVersion(scalaVersion.value),
javacOptions ++= javacOptionsVersion(scalaVersion.value),
pomExtra := (<url>http://chisel.eecs.berkeley.edu/</url>
<licenses>
<license>
<name>apache_v2</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>grebe</id>
<name>Paul Rigge</name>
<url>http://www.eecs.berkeley.edu/~rigge/</url>
</developer>
<developer>
<id>shunshou</id>
<name>Angie Wang</name>
<url>https://www.linkedin.com/in/angie-wang-ee/</url>
</developer>
<developer>
<id>chick</id>
<name>Charles Markley</name>
<url>https://aspire.eecs.berkeley.edu/author/chick/</url>
</developer>
</developers>),
publishTo := {
val v = version.value
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT")) {
Some("snapshots" at nexus + "content/repositories/snapshots")
}
else {
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
},
resolvers ++= Seq (
Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("releases")
),
// scala-steward:on
libraryDependencies ++= Seq(
"org.typelevel" %% "spire" % "0.16.2",
"org.scalanlp" %% "breeze" % "1.1",
"org.scalatest" %% "scalatest" % "3.2.8" % "test",
),
)
val rocketSettings = Seq(
name := "rocket-dsp-utils",
libraryDependencies ++= defaultVersions.map { case (dep, version) =>
"edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", version)
}.toSeq,
Test / parallelExecution := false,
crossScalaVersions := Seq("2.12.13"),
)
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { x => false }
val `rocket-dsp-utils` = (project in file(".")).
settings(commonSettings: _*).
settings(rocketSettings: _*)