Skip to content
Snippets Groups Projects
  • Serge Bazanski's avatar
    78ca72e9
    Build using Bazel · 78ca72e9
    Serge Bazanski authored
    This change integrates the Bazel build system into bio-rd.
    
    We also add support for:
      - running go dep from vendored libraries
      - running goveralls from vendored libraries
      - running bazel-based coverage from travis
    78ca72e9
    History
    Build using Bazel
    Serge Bazanski authored
    This change integrates the Bazel build system into bio-rd.
    
    We also add support for:
      - running go dep from vendored libraries
      - running goveralls from vendored libraries
      - running bazel-based coverage from travis
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.bazelrc.travis 801 B
# This is from Bazel's former travis setup, to avoid blowing up the RAM usage.
startup --host_jvm_args=-Xmx2500m
startup --host_jvm_args=-Xms2500m
startup --batch
test --ram_utilization_factor=10

# This is so we understand failures better
build --verbose_failures

# Disable curses to get nicer log
build --curses=no
test --curses=no

# 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

# Below this line, .travis.yml will cat the default bazelrc.
# This is needed so Bazel starts with the base workspace in its
# package path.