enso/project/BenchTasks.scala

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
307 B
Scala
Raw Normal View History

2019-09-10 19:53:23 +03:00
package org.enso.build
import sbt.{inputKey, taskKey, Tags}
2019-09-10 19:53:23 +03:00
/** Defines benchmarking related task keys.
2019-09-10 19:53:23 +03:00
*/
object BenchTasks {
2019-09-12 17:47:25 +03:00
lazy val Exclusive = Tags.Tag("Exclusive")
2019-09-10 19:53:23 +03:00
lazy val bench = taskKey[Unit]("Run Benchmarks")
lazy val benchOnly = inputKey[Unit]("Run benchmarks by name substring")
}