summaryrefslogtreecommitdiff
path: root/.travis/bazel-linux
blob: 5594ff8cb0adb228e1f5a6c6f2fbbc71e458dc55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh

ACTION="$1"

set -eu

travis_install() {
  # Get bazel.
  wget https://github.com/bazelbuild/bazel/releases/download/0.16.0/bazel-0.16.0-installer-linux-x86_64.sh
  chmod +x bazel-0.16.0-installer-linux-x86_64.sh
  ./bazel-0.16.0-installer-linux-x86_64.sh --user
  echo 'build --jobs=4 --curses=no --verbose_failures' >> $HOME/.bazelrc
  echo 'build --config=linux' >> $HOME/.bazelrc
  echo "build --config=$CC" >> $HOME/.bazelrc
  pip install --user yamllint
}

travis_script() {
  bazel test \
    //c-toxcore:license_test \
    //c-toxcore:readme_test \
    //c-toxcore:yamllint_test

  # TODO(iphydf): Make tests have a chance to succeed.
  # Run the tests, but if they fail, at least we should be able to build.
  # bazel test //c-toxcore/... || bazel build //c-toxcore/...
  bazel build //c-toxcore/...
}

if [ "-z" "$ACTION" ]; then
  "travis_script"
else
  "travis_$ACTION"
fi