.travis.yml 591 Bytes
Newer Older
1 2
os:
  - linux
3
sudo: false
Adam Barth's avatar
Adam Barth committed
4 5
addons:
  apt:
6
    # sky_shell binary depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
Adam Barth's avatar
Adam Barth committed
7
    sources:
8
      - ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
Adam Barth's avatar
Adam Barth committed
9
    packages:
10
      - libstdc++6
11
      - fonts-droid
12
install:
13 14 15 16 17
  - ./dev/bots/travis_install.sh
env:
  - SHARD=analyze
  - SHARD=tests
  - SHARD=docs
18
before_script:
19
  - ./dev/bots/travis_setup.sh
20
script:
21
  - (./bin/cache/dart-sdk/bin/dart ./dev/bots/test.dart && ./dev/bots/travis_upload.sh)
22 23
cache:
  directories:
24
    - $HOME/.pub-cache