.travis.yml 1019 字节
Newer Older
Y
Yu Yang 已提交
1 2 3 4
language: cpp
cache: ccache
sudo: required
dist: trusty
Y
Yu Yang 已提交
5 6 7
os:
  - linux
  - osx
Y
Yu Yang 已提交
8 9 10
env:
  - JOB=DOCS
  - JOB=BUILD_AND_TEST
Y
Yu Yang 已提交
11 12 13 14 15
matrix:
  exclude:
    - os: osx
      env: JOB=DOCS  # Only generate documentation in linux

Y
Yu Yang 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29
addons:
  apt:
    packages:
      - gcc-4.8
      - g++-4.8
      - wget
      - git
      - build-essential
      - libatlas-base-dev
      - python
      - python-pip
      - python2.7-dev
      - m4
      - libprotobuf-dev
Y
Yu Yang 已提交
30
      - doxygen
Y
Yu Yang 已提交
31 32 33 34 35 36 37
      - protobuf-compiler
      - python-protobuf
      - python-numpy
      - python-wheel
      - libgoogle-glog-dev
      - libgflags-dev
      - libgtest-dev
Y
Yu Yang 已提交
38
      - graphviz
Y
Yu Yang 已提交
39
before_install:
Y
Yu Yang 已提交
40 41
  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo paddle/scripts/travis/before_install.linux.sh; fi
  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then paddle/scripts/travis/before_install.osx.sh; fi
Y
Yu Yang 已提交
42
  - pip install wheel protobuf sphinx breathe recommonmark
Y
Yu Yang 已提交
43
script:
Y
Yu Yang 已提交
44
  - paddle/scripts/travis/main.sh
Y
Yu Yang 已提交
45 46 47 48
notifications:
  email:
    on_success: change
    on_failure: always