forked from exprmntr/test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
93 lines (89 loc) · 2.39 KB
/
.travis.yml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
sudo: required
cache:
timeout: 1000
packages: true
apt: true
directories:
- $HOME/.ya
notifications:
email: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- libc6-dev
- python-dev
- python3-dev
before_script: |
# `ya` provides it's own compiler toolchains, `CC` and CXX` environment variables will override
# them so we have to unset them.
#
unset CC
unset CXX
matrix:
include:
- os: osx
osx_image: xcode8.2
language: cpp
env: CB_BUILD_AGENT='clang-darwin-x86_64-release' CACHE_NAME=darwin
script: ~/build/${TRAVIS_REPO_SLUG}/ci/travis/script.sh
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: catboost-darwin
skip_cleanup: true
on:
tags: true
- os: osx
osx_image: xcode8.2
language: cpp
env: CB_BUILD_AGENT='clang-darwin-x86_64-release-cuda' CACHE_NAME=darwin
script: ~/build/${TRAVIS_REPO_SLUG}/ci/travis/script.sh
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: catboost-cuda-darwin
skip_cleanup: true
on:
tags: true
- os: osx
osx_image: xcode8.2
language: cpp
env: CB_BUILD_AGENT='python2-darwin-x86_64-release' CACHE_NAME=darwin
script: ~/build/${TRAVIS_REPO_SLUG}/ci/travis/script.sh
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file_glob: true
file: catboost/python-package/*.whl
skip_cleanup: true
on:
tags: true
- os: osx
osx_image: xcode8.2
language: cpp
env: CB_BUILD_AGENT='python35-darwin-x86_64-release' CACHE_NAME=darwin
script: ~/build/${TRAVIS_REPO_SLUG}/ci/travis/script.sh
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file_glob: true
file: catboost/python-package/*.whl
skip_cleanup: true
on:
tags: true
- os: osx
osx_image: xcode8.2
language: cpp
env: CB_BUILD_AGENT='python36-darwin-x86_64-release' CACHE_NAME=darwin
script: ~/build/${TRAVIS_REPO_SLUG}/ci/travis/script.sh
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file_glob: true
file: catboost/python-package/*.whl
skip_cleanup: true
on:
tags: true