Skip to content

Commit 5184419

Browse files
authored
Merge pull request #11661 from EmergentOrder/add-onnx-scala-to-cb
Community build: Add onnx-scala
2 parents c4dea7b + f8c218d commit 5184419

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,3 +187,6 @@
187187
[submodule "community-build/community-projects/protoquill"]
188188
path = community-build/community-projects/protoquill
189189
url = https://github.com/dotty-staging/protoquill.git
190+
[submodule "community-build/community-projects/onnx-scala"]
191+
path = community-build/community-projects/onnx-scala
192+
url = https://github.com/dotty-staging/onnx-scala.git
Submodule onnx-scala added at 64cb918

community-build/src/scala/dotty/communitybuild/projects.scala

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,13 @@ object projects:
614614
scalacOptions = List("-language:implicitConversions"), // disabled -Ycheck-init, due to bug in macro
615615
)
616616

617+
lazy val onnxScala = SbtCommunityProject(
618+
project = "onnx-scala",
619+
sbtTestCommand = "test",
620+
sbtPublishCommand = "publishLocal",
621+
dependencies = List(scalatest)
622+
)
623+
617624
end projects
618625

619626
def allProjects = List(
@@ -680,6 +687,7 @@ def allProjects = List(
680687
projects.perspective,
681688
projects.akka,
682689
projects.protoquill,
690+
projects.onnxScala,
683691
)
684692

685693
lazy val projectMap = allProjects.groupBy(_.project)

community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ class CommunityBuildTestA extends CommunityBuildTest:
109109
@Test def utest = projects.utest.run()
110110
@Test def zio = projects.zio.run()
111111
@Test def protoquill = projects.protoquill.run()
112+
@Test def onnxScala = projects.onnxScala.run()
112113

113114
// 'scala-stm' and 'Sciss/Lucre':
114115
// @Test def scissEqual = projects.scissEqual .run()

0 commit comments

Comments
 (0)