diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 15:07:39 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 15:18:45 +0100 |
commit | 29a429c29a9bb83fc6f5069167d5eef36ecf250d (patch) | |
tree | efa21b7026f687821d618ace78d7a28afdfe05e1 /org.eclipse.jgit.benchmarks/BUILD | |
parent | 9328236cfec5669a7424af6efe143e4835cdfd43 (diff) | |
parent | 452c38cd2285df77b831406e7eeab2dc778bdf1c (diff) | |
download | jgit-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/BUILD | 13 |
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 |