This repository has been archived by the owner on Aug 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8970c83
commit c9c51da
Showing
25 changed files
with
2,470 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,6 @@ doc/html | |
doc/latex | ||
test* | ||
rabit | ||
dmlc-core | ||
*.db | ||
*.bak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# disable sudo to use container based build | ||
sudo: false | ||
|
||
# Use Build Matrix to do lint and build seperately | ||
env: | ||
matrix: | ||
- TASK=lint LINT_LANG=cpp | ||
- TASK=doc | ||
- TASK=build CXX=g++ | ||
|
||
# dependent apt packages | ||
addons: | ||
apt: | ||
packages: | ||
- doxygen | ||
- wget | ||
- unzip | ||
- libatlas-dev | ||
|
||
before_install: | ||
- git clone https://github.com/dmlc/dmlc-core | ||
- export TRAVIS=dmlc-core/scripts/travis | ||
- source ${TRAVIS}/travis_setup_env.sh | ||
|
||
install: | ||
- pip install cpplint pylint --user `whoami` | ||
|
||
script: scripts/travis_script.sh | ||
|
||
before_cache: | ||
- ${TRAVIS}/travis_before_cache.sh | ||
|
||
cache: | ||
directories: | ||
- ${HOME}/.cache/usr | ||
|
||
notifications: | ||
email: | ||
on_success: change | ||
on_failure: always | ||
|
Oops, something went wrong.