Skip to content

Community build: Add onnx-scala #11661

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,6 @@
[submodule "community-build/community-projects/protoquill"]
path = community-build/community-projects/protoquill
url = https://github.com/dotty-staging/protoquill.git
[submodule "community-build/community-projects/onnx-scala"]
path = community-build/community-projects/onnx-scala
url = https://github.com/EmergentOrder/onnx-scala.git
1 change: 1 addition & 0 deletions community-build/community-projects/onnx-scala
Submodule onnx-scala added at 64cb91
8 changes: 8 additions & 0 deletions community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,13 @@ object projects:
scalacOptions = List("-language:implicitConversions"), // disabled -Ycheck-init, due to bug in macro
)

lazy val onnxScala = SbtCommunityProject(
project = "onnx-scala",
sbtTestCommand = "test",
sbtPublishCommand = "publishLocal",
dependencies = List()
)

end projects

def allProjects = List(
Expand Down Expand Up @@ -680,6 +687,7 @@ def allProjects = List(
projects.perspective,
projects.akka,
projects.protoquill,
projects.onnxScala,
)

lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ class CommunityBuildTestA extends CommunityBuildTest:
@Test def utest = projects.utest.run()
@Test def zio = projects.zio.run()
@Test def protoquill = projects.protoquill.run()
@Test def onnxScala = projects.onnxScala.run()

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