File tree 5 files changed +46
-29
lines changed
5 files changed +46
-29
lines changed Original file line number Diff line number Diff line change 3
3
* .idea
4
4
hash1
5
5
hash2
6
- .DS_store
6
+ .DS_store
7
+ .bazel_cache
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ osx_image: xcode8
6
6
# Not technically required but suppresses 'Ruby' in Job status message.
7
7
language : java
8
8
9
+ cache :
10
+ directories :
11
+ - .bazel_cache
12
+
9
13
os :
10
14
- linux
11
15
- osx
14
18
# we want to test the last release
15
19
- V=0.11.1 TEST_SCRIPT=test_rules_scala.sh
16
20
- V=0.11.1 TEST_SCRIPT=test_intellij_aspect.sh
21
+ - V=0.11.1 TEST_SCRIPT=test_reproducibility.sh
17
22
18
23
before_install :
19
24
- |
@@ -40,4 +45,3 @@ before_install:
40
45
41
46
script :
42
47
- bash $TEST_SCRIPT ci
43
-
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -16,28 +16,6 @@ test_disappearing_class() {
16
16
fi
17
17
set -e
18
18
}
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
- }
41
19
42
20
test_transitive_deps () {
43
21
set +e
@@ -813,8 +791,3 @@ $runner test_scala_import_library_passes_labels_of_direct_deps
813
791
$runner java_toolchain_javacopts_are_used
814
792
$runner bazel run test/src/main/scala/scala/test/classpath_resources:classpath_resource
815
793
$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
Original file line number Diff line number Diff line change
1
+ build --experimental_local_disk_cache
2
+ build --experimental_local_disk_cache_path=.bazel_cache
You can’t perform that action at this time.
0 commit comments