Browse Source

MINOR: jmh.sh swallows compile errors (#11870)

jmh.sh runs tasks in quiet mode which swallows compiler errors. This is a pain and I frequently have to edit the shell script to see the error.

Reviewers:  Ismael Juma <ismael@confluent.io>, Bill Bejeck <bbejeck@apache.org>
pull/11879/head
Lucas Bradstreet 3 years ago committed by GitHub
parent
commit
dc36dedd28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      jmh-benchmarks/jmh.sh

4
jmh-benchmarks/jmh.sh

@ -29,9 +29,9 @@ fi @@ -29,9 +29,9 @@ fi
gradleCmd="${gradlew_dir}/gradlew"
libDir="${base_dir}/build/libs"
echo "running gradlew :jmh-benchmarks:clean :jmh-benchmarks:shadowJar in quiet mode"
echo "running gradlew :jmh-benchmarks:clean :jmh-benchmarks:shadowJar"
$gradleCmd -q :jmh-benchmarks:clean :jmh-benchmarks:shadowJar
$gradleCmd :jmh-benchmarks:clean :jmh-benchmarks:shadowJar
echo "gradle build done"

Loading…
Cancel
Save