You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building JMH benchmarks, fail on error, instead of proceeding. (bazelbuild#977)
* When building JMH benchmarks, fail on error, instead of proceeding.
Currently, if there are errors in some (but not all) benchmarks, running
`bazel run //path/to/benchmark` will compile them, fail on some, and
then run the rest.
This changes that behavior so that any JMH build failure will fail the
build.
* Add a test for expected failures in JMH benchmarks.
* Document the fix to JMH builds as a breaking change.
* Split "test_benchmark_jmh_failure" from "test_benchmark_jmh".
* We don't need ValidBenchmark.scala when testing JMH failures.
If you're upgrading to a version containing one of these commits, you may encounter a breaking change where there was previously undefined behavior.
129
+
130
+
-[929b318](https://github.com/bazelbuild/rules_scala/commit/929b3180cc099ba76859f5e88710d2ac087fbfa3) on 2020-01-30: Fixed a bug in the JMH benchmark build that was allowing build failures to creep through. Previously you were able to build a benchmark suite with JMH build errors. Running the benchmark suite would only run the successfully-built benchmarks.
131
+
126
132
## Usage with [bazel-deps](https://github.com/johnynek/bazel-deps)
127
133
128
134
Bazel-deps allows you to generate bazel dependencies transitively for maven artifacts. Generally we don't want bazel-deps to fetch
0 commit comments