.travis.yml 626 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 13 14
language: node_js
node_js:
  - "6"
15
install:
16 17 18 19 20
  - ./dev/bots/travis_install.sh
env:
  - SHARD=analyze
  - SHARD=tests
  - SHARD=docs
21
before_script:
22
  - ./dev/bots/travis_setup.sh
23
script:
24
  - (./bin/cache/dart-sdk/bin/dart ./dev/bots/test.dart && ./dev/bots/travis_upload.sh)
25 26
cache:
  directories:
27
    - $HOME/.pub-cache