summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: fbc0e46d784cac25ea01c8965ca11a546cc34919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: shell
dist: xenial
cache:
  directories:
    - /home/travis/.cache/bazel/
os: linux
services:
  - docker
jobs:
  include:
   - os: linux
     arch: amd64
   - os: linux
     arch: arm64
script:
   # On arm64, we need to create our own pipes for stderr and stdout,
   # otherwise we will not be able to open /dev/stderr. This is probably
   # due to AppArmor rules.
   - uname -a && make smoke-test 2>&1 | cat
branches:
  except:
  # Skip copybara branches.
  - /^test\/cl.*$/