diff options
| author | Jiuyang Liu | 2021-07-11 01:59:41 +0800 |
|---|---|---|
| committer | Jiuyang Liu | 2021-07-13 04:49:07 +0800 |
| commit | 0d4bfbccd8b31230d16d3039429df7358970bf99 (patch) | |
| tree | ed55b70f8eb39fabdb28cc83a9f9e79fccb8fbf2 | |
| parent | ea7630bf12f8da0a4150386b95539a177940bd68 (diff) | |
fix for GitHub Action missing ivy FIRRTL.
| -rw-r--r-- | build.sbt | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -219,7 +219,11 @@ lazy val chisel = (project in file(".")). lazy val noPluginTests = (project in file ("no-plugin-tests")). dependsOn(chisel). settings(commonSettings: _*). - settings(chiselSettings: _*) + settings(chiselSettings: _*). + settings(Seq( + // Totally don't know why GitHub Action won't introduce FIRRTL to dependency. + libraryDependencies += defaultVersions("firrtl"), + )) lazy val docs = project // new documentation project .in(file("docs-target")) // important: it must not be docs/ |
