.travis.yml 1.81 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
language: cpp
sudo: required
dist: trusty

5
6
7
git:
  submodules: true

wxchan's avatar
wxchan committed
8
9
10
compiler:
  - gcc

11
12
13
14
15
os:
  - linux
  - osx

env:
16
17
  global:
    - PYTHON_VERSION=3.6
18
  matrix:
19
20
21
22
23
24
25
26
    - TASK=regular
    - TASK=mpi
    - TASK=pylint
    - TASK=if-else
    - TASK=sdist
    - TASK=bdist
    - TASK=gpu METHOD=source
    - TASK=gpu METHOD=pip
27
28
29
30
    - TASK=regular PYTHON_VERSION=2.7
    - TASK=regular PYTHON_VERSION=3.4
    - TASK=regular PYTHON_VERSION=3.5

wxchan's avatar
wxchan committed
31
matrix:
32
  exclude:
wxchan's avatar
wxchan committed
33
    - os: osx
34
      env: TASK=gpu METHOD=source
wxchan's avatar
wxchan committed
35
    - os: osx
36
      env: TASK=gpu METHOD=pip
37
    - os: osx
38
      env: TASK=pylint
wxchan's avatar
wxchan committed
39

Guolin Ke's avatar
Guolin Ke committed
40
before_install:
41
42
  - test -n $CC  && unset CC
  - test -n $CXX && unset CXX
wxchan's avatar
wxchan committed
43
44

install:
45
46
47
48
49
  - bash .travis/setup.sh
  - bash conda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
Guolin Ke's avatar
Guolin Ke committed
50
51

script:
52
  - bash .travis/test.sh
Guolin Ke's avatar
Guolin Ke committed
53
54
55

notifications:
  email: false
Guolin Ke's avatar
Guolin Ke committed
56
57
58
59
60
61
62
63
64
65
66

deploy:
  provider: releases
  api-key:
    secure: "idU9Fb/yUz7VsVOEb0vGR8qqxcvXr4eh1tMzkKiMWLRx5XNeq7RCUzfKAPMIizFkML9zdMh/5vPtZ1Zs++3oWPpbZE2/o4CURoE+BvwDUyEDrKTdNSGoWgWZq0QLjfahj/PR8ObWlU+XCHqRQzKXlwbynwwUGRpOJrlEY0To5Kt9gTV5W8MxSlW7xFU2TTmMa499IZut38OuenJ3Nm9mTe6MCHFW4Y5uGp/gwNuBYfqzwUXDi6h/cJiJJD5drwtNnSneFZ2PZplrKxJxSJdSQ2aHttU+Wr8xogi9hLI/H6OA4UYCF69HrWOLSggplkZt6qUzaG7UfYyid4m6YbeKMUQRNBuGXhYVGr5qkyAzqXiOesGAef550346pWEZNGPLfNnKAwqPgkp8Q8tV9i0srjzyttqFAlLqhA76yST3kuX+QS0VGepSUTV+kkfxCaHZagxtX9Xve5RNybu4B44UmHWIGJnS6ijYpxWKwvWnMmBCIezFbZYyqsiXYC+9d5RfBgNFQ4PlRfmY0vnJlwUhx1AnyL9jsxnthwl9CNczo4mgBqnCSXxlhXNHz6ToMQuhgdhnqm5+qqJzI5/eUugxh8CW18qZTZBkrnL4DxEMm+bQ2QT8O07ZHrEDPKPXxQw7tBsphWvECetJ4DxXfNaf59GrY+eD6TFZuxurB5Vvo6s="
  file_glob: true
  file: python-package/dist/*.whl
  skip_cleanup: true
  draft: true
  tag_name: $TRAVIS_TAG
  on:
67
    condition: "$TASK = bdist"
Guolin Ke's avatar
Guolin Ke committed
68
69
    tags: true
    all_branches: true