-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Taken from https://github.com/korfuri/bazel-travis/blob/master/.bazelrc | ||
|
||
# This is from Bazel's former travis setup, to avoid blowing up the RAM usage. | ||
startup --host_jvm_args=-Xms2000m | ||
startup --host_jvm_args=-Xmx3000m | ||
test --ram_utilization_factor=10 | ||
|
||
# This is so we understand failures better | ||
build --verbose_failures | ||
test --test_output=errors | ||
|
||
# This is so we don't use sandboxed execution. Sandboxed execution | ||
# runs stuff in a container, and since Travis already runs its script | ||
# in a container (unless you require sudo in your .travis.yml) this | ||
# fails to run tests. | ||
# build --spawn_strategy=standalone --genrule_strategy=standalone | ||
# test --test_strategy=standalone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters