mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
746521f8b2
Co-authored-by: Radosław Waśko <radoslaw.wasko@enso.org> Co-authored-by: Dmitry Bushev <bushevdv@gmail.com>
12 lines
307 B
Scala
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")
|
|
}
|