Skip to content

Commit 606ccae

Browse files
andyscottjohnynek
authored andcommitted
Enable local cache by default (bazelbuild#478)
* Enable local cache by default * Spin up separate reproducibility Travis job
1 parent 8117089 commit 606ccae

File tree

5 files changed

+46
-29
lines changed

5 files changed

+46
-29
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ bazel-*
33
*.idea
44
hash1
55
hash2
6-
.DS_store
6+
.DS_store
7+
.bazel_cache

.travis.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ osx_image: xcode8
66
# Not technically required but suppresses 'Ruby' in Job status message.
77
language: java
88

9+
cache:
10+
directories:
11+
- .bazel_cache
12+
913
os:
1014
- linux
1115
- osx
@@ -14,6 +18,7 @@ env:
1418
# we want to test the last release
1519
- V=0.11.1 TEST_SCRIPT=test_rules_scala.sh
1620
- V=0.11.1 TEST_SCRIPT=test_intellij_aspect.sh
21+
- V=0.11.1 TEST_SCRIPT=test_reproducibility.sh
1722

1823
before_install:
1924
- |
@@ -40,4 +45,3 @@ before_install:
4045

4146
script:
4247
- bash $TEST_SCRIPT ci
43-

test_reproducibility.sh

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
md5_util() {
6+
if [[ "$OSTYPE" == "darwin"* ]]; then
7+
_md5_util="md5"
8+
else
9+
_md5_util="md5sum"
10+
fi
11+
echo "$_md5_util"
12+
}
13+
14+
non_deploy_jar_md5_sum() {
15+
find bazel-bin/test -name "*.jar" ! -name "*_deploy.jar" | xargs -n 1 -P 5 $(md5_util) | sort
16+
}
17+
18+
test_build_is_identical() {
19+
bazel build test/...
20+
non_deploy_jar_md5_sum > hash1
21+
bazel clean
22+
sleep 2 # to make sure that if timestamps slip in we get different ones
23+
bazel build --noexperimental_local_disk_cache test/...
24+
non_deploy_jar_md5_sum > hash2
25+
diff hash1 hash2
26+
}
27+
28+
dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
29+
# shellcheck source=./test_runner.sh
30+
. "${dir}"/test_runner.sh
31+
runner=$(get_test_runner "${1:-local}")
32+
33+
34+
# This test is last/separate since it compares the current outputs to new ones to make sure they're identical
35+
# If it runs before some of the above (like jmh) the "current" output in CI might be too close in time to the "new" one
36+
# The test also adds sleep by itself but it's best if it's last
37+
$runner test_build_is_identical

test_rules_scala.sh

-27
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,6 @@ test_disappearing_class() {
1616
fi
1717
set -e
1818
}
19-
md5_util() {
20-
if [[ "$OSTYPE" == "darwin"* ]]; then
21-
_md5_util="md5"
22-
else
23-
_md5_util="md5sum"
24-
fi
25-
echo "$_md5_util"
26-
}
27-
28-
non_deploy_jar_md5_sum() {
29-
find bazel-bin/test -name "*.jar" ! -name "*_deploy.jar" | xargs -n 1 -P 5 $(md5_util) | sort
30-
}
31-
32-
test_build_is_identical() {
33-
bazel build test/...
34-
non_deploy_jar_md5_sum > hash1
35-
bazel clean
36-
sleep 2 # to make sure that if timestamps slip in we get different ones
37-
bazel build test/...
38-
non_deploy_jar_md5_sum > hash2
39-
diff hash1 hash2
40-
}
4119

4220
test_transitive_deps() {
4321
set +e
@@ -813,8 +791,3 @@ $runner test_scala_import_library_passes_labels_of_direct_deps
813791
$runner java_toolchain_javacopts_are_used
814792
$runner bazel run test/src/main/scala/scala/test/classpath_resources:classpath_resource
815793
$runner test_scala_classpath_resources_expect_warning_on_namespace_conflict
816-
817-
# This test is last since it compares the current outputs to new ones to make sure they're identical
818-
# If it runs before some of the above (like jmh) the "current" output in CI might be too close in time to the "new" one
819-
# The test also adds sleep by itself but it's best if it's last
820-
$runner test_build_is_identical

tools/bazel.rc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build --experimental_local_disk_cache
2+
build --experimental_local_disk_cache_path=.bazel_cache

0 commit comments

Comments
 (0)