enso/project/BenchTasks.scala
Ara Adkins 746521f8b2
Bump SBT and Scalafmt (#1203)
Co-authored-by: Radosław Waśko <radoslaw.wasko@enso.org>
Co-authored-by: Dmitry Bushev <bushevdv@gmail.com>
2020-10-22 16:12:28 +02:00

12 lines
307 B
Scala

package org.enso.build
import sbt.{inputKey, taskKey, Tags}
/** Defines benchmarking related task keys.
*/
object BenchTasks {
lazy val Exclusive = Tags.Tag("Exclusive")
lazy val bench = taskKey[Unit]("Run Benchmarks")
lazy val benchOnly = inputKey[Unit]("Run benchmarks by name substring")
}