From 0612ad6dd56ef416bc1481851ae1c6c5992782bf Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 18 Jul 2019 20:22:57 -0700 Subject: [PATCH] Exclude jmh from reproducibility test, since the code generator is non-deterministic. https://github.com/bazelbuild/rules_scala/issues/699 --- test_reproducibility.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_reproducibility.sh b/test_reproducibility.sh index 5d866dbd4..656857096 100755 --- a/test_reproducibility.sh +++ b/test_reproducibility.sh @@ -12,7 +12,7 @@ md5_util() { } non_deploy_jar_md5_sum() { - find bazel-bin/test -name "*.jar" ! -name "*_deploy.jar" | xargs -n 1 -P 5 $(md5_util) | sort + find bazel-bin/test -name "*.jar" ! -name "*_deploy.jar" ! -path 'bazel-bin/test/jmh/*' | xargs -n 1 -P 5 $(md5_util) | sort } test_build_is_identical() {