Skip to content

Commit

Permalink
Exclude VertexCacheBenchmark from CI benchmark [CTR]
Browse files Browse the repository at this point in the history
VertexCacheBenchmark requires too much memory that causes GitHub Actions
to die. This commit excludes it from CI benchmark, but it can still be
run manually.

Signed-off-by: Boxuan Li <liboxuan@connect.hku.hk>
  • Loading branch information
li-boxuan committed Sep 13, 2022
1 parent 8199fa0 commit 7d3f988
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public static void main(String[] args) throws RunnerException, IOException, Inte
} else {
builder.include(".*Benchmark");
builder.exclude("StaticArrayEntryListBenchmark");
builder.exclude("VertexCacheBenchmark");
builder.exclude("CQL.*Benchmark");
}
Collection<RunResult> results = new Runner(builder.build()).run();
Expand Down

0 comments on commit 7d3f988

Please sign in to comment.