.travis.yml 1.1 KB
Newer Older
Y
Yu Yang 已提交
1
language: cpp
2 3 4
cache:
  directories:
    - $HOME/.ccache
Y
Yu Yang 已提交
5
    - $HOME/.cache/pip
Y
Yu Yang 已提交
6 7
sudo: required
dist: trusty
Y
Yu Yang 已提交
8 9
os:
  - linux
Y
Yu Yang 已提交
10
env:
Y
Yi Wang 已提交
11 12
  - JOB=build_doc
  - JOB=check_style
Y
Yu Yang 已提交
13 14 15 16 17 18 19
addons:
  apt:
    packages:
      - gcc-4.8
      - g++-4.8
      - git
      - build-essential
20
      - python
Y
Yu Yang 已提交
21
      - python-pip
22
      - python2.7-dev
23 24
      - python-numpy
      - python-wheel
L
liaogang 已提交
25
      - libboost-dev
G
gangliao 已提交
26
      - curl
L
liaogang 已提交
27
      - swig
Y
Yu Yang 已提交
28
      - graphviz
Y
Yu Yang 已提交
29
      - clang-format-3.8
30 31
      - automake
      - libtool
32
      - ccache
Y
Yu Yang 已提交
33
before_install:
Y
Yi Wang 已提交
34
  - if [[ "$JOB" == "check_style" ]]; then sudo ln -s /usr/bin/clang-format-3.8 /usr/bin/clang-format; fi
Y
Yu Yang 已提交
35 36
  # Paddle is using protobuf 3.1 currently. Protobuf 3.2 breaks the compatibility. So we specify the python 
  # protobuf version.
D
dzhwinter 已提交
37 38
  - pip install numpy wheel 'protobuf==3.1' sphinx==1.5.6 recommonmark sphinx-rtd-theme==0.1.9 virtualenv pre-commit requests==2.9.2 LinkChecker
  - pip install rarfile
Q
qiaolongfei 已提交
39
  - eval "$(GIMME_GO_VERSION=1.8.3 gimme)"
Y
Yu Yang 已提交
40 41
  - |
    function timeout() { perl -e 'alarm shift; exec @ARGV' "$@"; }
Y
Yu Yang 已提交
42
script:
Y
Yi Wang 已提交
43
  - paddle/scripts/travis/$JOB.sh
Y
Yu Yang 已提交
44 45 46 47
notifications:
  email:
    on_success: change
    on_failure: always