Skip to content

Commit 48f9afa

Browse files
author
zhanglinjuan
committed
Add HuanCun as submodule for L2L3-unit-test
1 parent f9a8ec5 commit 48f9afa

File tree

4 files changed

+226
-216
lines changed

4 files changed

+226
-216
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[submodule "utility"]
55
path = utility
66
url = https://github.com/OpenXiangShan/utility
7+
[submodule "HuanCun"]
8+
path = HuanCun
9+
url = https://github.com/OpenXiangShan/HuanCun.git

HuanCun

Submodule HuanCun added at 2f78897

build.sc

+7-1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,12 @@ object utility extends SbtModule with ScalafmtModule with CommonModule {
9191
override def moduleDeps = super.moduleDeps ++ Seq(rocketchip)
9292
}
9393

94+
object huancun extends SbtModule with ScalafmtModule with CommonModule {
95+
override def millSourcePath = os.pwd / "HuanCun"
96+
override def moduleDeps = super.moduleDeps ++ Seq(
97+
rocketchip, utility
98+
)
99+
}
94100

95101
object CoupledL2 extends SbtModule with ScalafmtModule with CommonModule {
96102

@@ -102,7 +108,7 @@ object CoupledL2 extends SbtModule with ScalafmtModule with CommonModule {
102108
getVersion("chiseltest"),
103109
)
104110

105-
override def moduleDeps = super.moduleDeps ++ Seq(rocketchip, utility)
111+
override def moduleDeps = super.moduleDeps ++ Seq(rocketchip, utility, huancun)
106112

107113
object test extends Tests {
108114
override def ivyDeps = super.ivyDeps() ++ Agg(

0 commit comments

Comments
 (0)