From 0d4bfbccd8b31230d16d3039429df7358970bf99 Mon Sep 17 00:00:00 2001 From: Jiuyang Liu Date: Sun, 11 Jul 2021 01:59:41 +0800 Subject: fix for GitHub Action missing ivy FIRRTL. --- build.sbt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index cc4dee41..1a47d7c1 100644 --- a/build.sbt +++ b/build.sbt @@ -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/ -- cgit v1.2.3