* Fix #3402: wrong fid crashes distributed algorithm The bug was introduced by the recent DMatrix refactor (#3301). It was partially fixed by #3408 but the example in #3402 was still failing. The example in #3402 will succeed after this fix is applied. * Explicitly specify "this" to prevent compile error * Add regression test * Add distributed test to Travis matrix * Install kubernetes Python package as dependency of dmlc tracker * Add Python dependencies * Add compile step * Reduce size of regression test case * Further reduce size of test
34 lines
968 B
Bash
Executable File
34 lines
968 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${TRAVIS_OS_NAME} == "osx" ]; then
|
|
brew update
|
|
brew install graphviz
|
|
fi
|
|
|
|
if [ ${TASK} == "lint" ]; then
|
|
pip install --user cpplint 'pylint==1.4.4' 'astroid==1.3.6'
|
|
fi
|
|
|
|
|
|
if [ ${TASK} == "python_test" ] || [ ${TASK} == "python_lightweight_test" ]; then
|
|
# python2
|
|
if [ ${TRAVIS_OS_NAME} == "osx" ]; then
|
|
wget -O conda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
|
|
else
|
|
wget -O conda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
|
|
fi
|
|
bash conda.sh -b -p $HOME/miniconda
|
|
export PATH="$HOME/miniconda/bin:$PATH"
|
|
hash -r
|
|
conda config --set always_yes yes --set changeps1 no
|
|
conda update -q conda
|
|
# Useful for debugging any issues with conda
|
|
conda info -a
|
|
conda create -n python3 python=3.5
|
|
conda create -n python2 python=2.7
|
|
fi
|
|
|
|
if [ ${TASK} == "distributed_test" ]; then
|
|
pip install --user kubernetes numpy scipy
|
|
fi
|