-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
44 lines (38 loc) · 1.28 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
description := "The Apalache Benchmarking System"
name := "apalache-bench"
organizationHomepage := Some(url("https://apalache.informal.systems/"))
ThisBuild / version := "0.0.1"
ThisBuild / sbtVersion := "1.6.1"
ThisBuild / scalaVersion := "2.13.6"
ThisBuild / organization := "systems.informal"
ThisBuild / apalacheVersion := "#main"
ThisBuild / benchmarksToolVersion := apalacheEnableVersion.value
lazy val performance = (project in file("performance"))
lazy val parametric = (project in file("parametric"))
lazy val endive = (project in file("endive"))
lazy val examples = (project in file("examples"))
lazy val root = (project in file("."))
.enablePlugins(Apalache)
.aggregate(
// Should aggregate every project that can run reports
performance,
parametric,
endive,
examples,
)
// Configure GH pages site
enablePlugins(GhpagesPlugin)
git.remoteRepo := "[email protected]:informalsystems/apalache-bench.git"
ghpagesNoJekyll := true
lazy val site = (project in file("src/site"))
.enablePlugins(BenchExec)
.settings(
// Versions to include in the reports of performance accross versions
benchmarksLongitudinalVersions := Set(
"0.22.0",
"0.23.0",
"0.24.0",
"0.25.0",
),
benchmarksIndexFile := Some(baseDirectory.value / "index.html"),
)