Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add testScoped
  • Loading branch information
ghostbuster91 committed Sep 23, 2023
commit 39221da1451dd9a221707a1d8b4537539eb05f3a
4 changes: 4 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,10 @@ lazy val rootProject = project
compileScoped := Def.inputTaskDyn {
val args = spaceDelimited("<arg>").parsed
Def.taskDyn((Compile / compile).all(filterByVersionAndPlatform(args.head, args(1))))
}.evaluated,
testScoped := Def.inputTaskDyn {
val args = spaceDelimited("<arg>").parsed
Def.taskDyn((Test / test).all(filterByVersionAndPlatform(args.head, args(1))))
}.evaluated
)
.aggregate(allAggregates: _*)