Fix next-job query to do round-robin through job groups

This commit is contained in:
eikek
2021-06-26 23:33:25 +02:00
parent 988367a281
commit ce6f53cc29
7 changed files with 162 additions and 23 deletions

View File

@ -8,6 +8,9 @@ val elmCompileMode = settingKey[ElmCompileMode]("How to compile elm sources")
// --- Settings
def inTest(d0: Seq[ModuleID], ds: Seq[ModuleID]*) =
ds.fold(d0)(_ ++ _).map(_ % Test)
val scalafixSettings = Seq(
semanticdbEnabled := true, // enable SemanticDB
semanticdbVersion := scalafixSemanticdb.revision, //"4.4.0"
@ -45,7 +48,7 @@ val sharedSettings = Seq(
) ++ scalafixSettings
val testSettingsMUnit = Seq(
libraryDependencies ++= Dependencies.munit.map(_ % Test),
libraryDependencies ++= inTest(Dependencies.munit, Dependencies.logging),
testFrameworks += new TestFramework("munit.Framework")
)