summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: b6958f353746f2dc21b2eb960a67957224ff3398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# https://travis-ci.org/pytorch/pytorch
language: python
dist: trusty
git:
  submodules: false
python:
    - 2.7.9
    - 2.7
    - 3.5
    - 3.6
    - nightly

cache:
    - ccache
    - directories:
        - $HOME/.ccache

script:
    - unset CCACHE_DISABLE
    - export CCACHE_DIR=$HOME/.ccache
    - export CC="ccache gcc-5"
    - export CXX="ccache g++-5"
    - ccache --show-stats
    - tools/run_aten_tests.sh
    - travis_retry pip install --upgrade pip setuptools wheel
    - travis_retry pip install -r requirements.txt --only-binary=scipy
    - git submodule update --init --recursive
    - MAX_JOBS=8 python setup.py install
    - OMP_NUM_THREADS=2 ./test/run_test.sh

addons:
    apt:
        sources:
            - ubuntu-toolchain-r-test
        packages:
            - g++-5
            - valgrind

# This reportedly works around an issue downloading packages from pypi on
# travis.  Consider removing this after the underlying issue is fixed.
# https://github.com/travis-ci/travis-ci/issues/2389
sudo: false

matrix:
    fast_finish: true
    include:
        env: LINT_CHECK
        python: "2.7"
        addons: true
        install: pip install flake8
        script: flake8