Permalink
Cannot retrieve contributors at this time
22 lines (18 sloc)
658 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
semantic/.bazelrc
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
build:ci --loading_phase_threads=1 | |
build:ci --jobs=2 | |
build:ci --verbose_failures | |
common:ci --color=no | |
test:ci --test_output=errors | |
build --disk_cache=.bazel-cache/bazel-disk | |
build --repository_cache=.bazel-cache/bazel-repo | |
build --color=yes | |
build --jobs=8 | |
build --compilation_mode=fastbuild | |
# test environment does not propagate locales by default | |
# some tests reads files written in UTF8, we need to propagate the correct | |
# environment variables, such as LOCALE_ARCHIVE | |
# We also need to setup an utf8 locale | |
test --test_env=LANG=en_US.utf8 --test_env=LOCALE_ARCHIVE | |
test --test_output=errors | |
test --compilation_mode=fastbuild | |
try-import .bazelrc.local |