setup.sh 637 Bytes
Newer Older
wxchan's avatar
wxchan committed
1
2
3
#!/bin/bash

if [[ $TRAVIS_OS_NAME == "osx" ]]; then
wxchan's avatar
wxchan committed
4
5
    brew install gcc --without-multilib
    brew install openmpi
6
    wget -O conda.sh https://repo.continuum.io/miniconda/Miniconda${PYTHON_VERSION:0:1}-latest-MacOSX-x86_64.sh
wxchan's avatar
wxchan committed
7
else
8
    if [[ ${TASK} != "pylint" ]] && [[ ${TASK} != "check-docs" ]]; then
wxchan's avatar
wxchan committed
9
10
11
12
13
        sudo add-apt-repository ppa:george-edison55/cmake-3.x -y
        sudo apt-get update -q
        sudo apt-get install -y cmake
        sudo apt-get install -y libopenmpi-dev openmpi-bin build-essential
    fi
14
    wget -O conda.sh https://repo.continuum.io/miniconda/Miniconda${PYTHON_VERSION:0:1}-latest-Linux-x86_64.sh
wxchan's avatar
wxchan committed
15
fi