Skip to content

Commit

Permalink
Merge pull request #3583 from chipsalliance/diplomacy-bump
Browse files Browse the repository at this point in the history
bump diplomacy and switch to diplomacy/master
  • Loading branch information
sequencer committed Mar 11, 2024
2 parents b3476b1 + aa92969 commit 2af9fe6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
7 changes: 2 additions & 5 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,8 @@ trait Diplomacy
def chiselIvy = Some(v.chiselCrossVersions(crossValue)._1)
def chiselPluginIvy = Some(v.chiselCrossVersions(crossValue)._2)

// use CDE from source untill published to sonatype
def cdeModule = Some(cde)

// no cde ivy currently published
def cdeIvy = None
// use CDE from source until published to sonatype
def cdeModule = cde

def sourcecodeIvy = v.sourcecode
}
Expand Down
9 changes: 2 additions & 7 deletions common.sc
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,18 @@ trait RocketChipModule
// should be hardfloat/common.sc#HardfloatModule
def hardfloatModule: ScalaModule

// should be cde/common.sc#CDEModule
def cdeModule: ScalaModule

def diplomacyModule: ScalaModule

def diplomacyIvy: Option[Dep]

def mainargsIvy: Dep

def json4sJacksonIvy: Dep

override def moduleDeps = super.moduleDeps ++ Seq(macrosModule, hardfloatModule, cdeModule, diplomacyModule)
override def moduleDeps = super.moduleDeps ++ Seq(macrosModule, hardfloatModule, diplomacyModule)

override def ivyDeps = T(
super.ivyDeps() ++ Agg(
mainargsIvy,
json4sJacksonIvy,
) ++ diplomacyIvy
)
)
}

0 comments on commit 2af9fe6

Please sign in to comment.