summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.benchmarks/BUILD
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2019-11-05 15:07:39 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2019-11-05 15:18:45 +0100
commit29a429c29a9bb83fc6f5069167d5eef36ecf250d (patch)
treeefa21b7026f687821d618ace78d7a28afdfe05e1 /org.eclipse.jgit.benchmarks/BUILD
parent9328236cfec5669a7424af6efe143e4835cdfd43 (diff)
parent452c38cd2285df77b831406e7eeab2dc778bdf1c (diff)
downloadjgit-29a429c29a9bb83fc6f5069167d5eef36ecf250d.tar.gz
jgit-29a429c29a9bb83fc6f5069167d5eef36ecf250d.zip
Merge branch 'stable-5.1' into stable-5.2
* stable-5.1: Run JMH benchmarks using bazel Benchmark for creating files and FileSnapshots Implement benchmark for looking up FileStore of a given Path JMH benchmark for SimpleLruCache Remove unused API problem filters Silence API errors for new API added since 5.1.0 Change-Id: If91c55a192d3b2c441d9c8d414f2e24a7261b1b6 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.benchmarks/BUILD')
-rw-r--r--org.eclipse.jgit.benchmarks/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/org.eclipse.jgit.benchmarks/BUILD b/org.eclipse.jgit.benchmarks/BUILD
new file mode 100644
index 0000000000..3c6ff0e12b
--- /dev/null
+++ b/org.eclipse.jgit.benchmarks/BUILD
@@ -0,0 +1,13 @@
+load("//tools:bzl/jmh.bzl", "jmh_java_benchmarks")
+
+SRCS = glob(
+ ["src/**/*.java"],
+)
+
+jmh_java_benchmarks(
+ name = "benchmarks",
+ srcs = SRCS,
+ deps = [
+ "//org.eclipse.jgit:jgit",
+ ],
+) \ No newline at end of file