summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-08-12 14:24:38 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-08-12 17:04:07 +0000
commitb3036c55a681521477a43db8836b67d143c56516 (patch)
treeefdff01befe00829ebe54ea3c5a1ff2ef458c22b /.travis
parenta7434646230b57faadcca60b280ce3e942389988 (diff)
Stop running tests in the bazel build.
These always fail at present. We'll need to look into making them not always fail so we can enable them and get some useful signal from them.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/bazel-linux4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis/bazel-linux b/.travis/bazel-linux
index 5caf2a72..0073a39e 100755
--- a/.travis/bazel-linux
+++ b/.travis/bazel-linux
@@ -14,8 +14,10 @@ travis_install() {
14} 14}
15 15
16travis_script() { 16travis_script() {
17 # TODO(iphydf): Make tests have a chance to succeed.
17 # Run the tests, but if they fail, at least we should be able to build. 18 # Run the tests, but if they fail, at least we should be able to build.
18 bazel test //c-toxcore/... || bazel build //c-toxcore/... 19 # bazel test //c-toxcore/... || bazel build //c-toxcore/...
20 bazel build //c-toxcore/...
19} 21}
20 22
21if [ "-z" "$ACTION" ]; then 23if [ "-z" "$ACTION" ]; then