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

if [[ $TRAVIS_OS_NAME == "osx" ]]; then
4
    brew install openmpi  # use openmpi to install gcc
5
    wget -O conda.sh https://repo.continuum.io/miniconda/Miniconda${PYTHON_VERSION:0:1}-latest-MacOSX-x86_64.sh
wxchan's avatar
wxchan committed
6
7
8
9
10
11
12
else
    if [[ ${TASK} != "pylint" ]]; then
        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
13
    wget -O conda.sh https://repo.continuum.io/miniconda/Miniconda${PYTHON_VERSION:0:1}-latest-Linux-x86_64.sh
wxchan's avatar
wxchan committed
14
fi