Skip to content

Add cask to community build #11675

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 2 commits into from
Mar 11, 2021
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -190,3 +190,6 @@
[submodule "community-build/community-projects/onnx-scala"]
path = community-build/community-projects/onnx-scala
url = https://github.com/dotty-staging/onnx-scala.git
[submodule "community-build/community-projects/cask"]
path = community-build/community-projects/cask
url = https://github.com/dotty-staging/cask.git
1 change: 1 addition & 0 deletions community-build/community-projects/cask
Submodule cask added at 93c27a
2 changes: 1 addition & 1 deletion community-build/community-projects/fansi
Submodule fansi updated 5 files
+51 −0 .github/workflows/actions.yml
+0 −16 .travis.yml
+23 −21 build.sc
+1 −1 mill
+8 −3 readme.md
2 changes: 1 addition & 1 deletion community-build/community-projects/upickle
Submodule upickle updated 101 files
21 changes: 21 additions & 0 deletions community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,18 @@ object projects:
dependencies = List(geny, utest)
)

lazy val upickleImplicits = MillCommunityProject(
project = "upickle",
baseCommand = s"implicits.jvm[$compilerVersion]",
dependencies = List(upickleCore, ujson)
)

lazy val upack = MillCommunityProject(
project = "upickle",
baseCommand = s"upack.jvm[$compilerVersion]",
dependencies = List(ujson, upickleCore)
)

lazy val geny = MillCommunityProject(
project = "geny",
baseCommand = s"geny.jvm[$compilerVersion]",
Expand All @@ -214,6 +226,12 @@ object projects:
dependencies = List(geny, utest, ujson, upickleCore)
)

lazy val cask = MillCommunityProject(
project = "cask",
baseCommand = s"cask[$compilerVersion]",
dependencies = List(utest, geny, sourcecode, pprint, upickle, upickleImplicits, upack, requests)
)

lazy val scas = MillCommunityProject(
project = "scas",
baseCommand = "scas.application"
Expand Down Expand Up @@ -631,10 +649,13 @@ def allProjects = List(
projects.ujson,
projects.upickle,
projects.upickleCore,
projects.upickleImplicits,
projects.upack,
projects.geny,
projects.fansi,
projects.pprint,
projects.requests,
projects.cask,
projects.scas,
projects.intent,
projects.algebra,
Expand Down