mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
13 lines
311 B
Scala
13 lines
311 B
Scala
package org.enso.build
|
|
|
|
import sbt.{Tags, inputKey, taskKey}
|
|
|
|
/**
|
|
* 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")
|
|
}
|