-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
28 lines (28 loc) · 983 Bytes
/
.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
language: python
python:
- '2.7'
notifications:
email: false
slack:
secure: WiSLYg5SbqwpX9STr1BEll2lY+uwQmaxi3qd0RPjbLyGZta7razHzMFfdfoPfjsFe91AqTTJgNrDIKiPdCHoArvpgXNW7efVLgiZ9Cr3jb9ccPLQei7aObUDt5ycFZkgH4N7+N8ml3JZ2Ju4UY9wXcRhWcCBjaSZ9xtk7itGCUk=
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.8
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- "./miniconda.sh -b"
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
- conda create -n build --yes python=$TRAVIS_PYTHON_VERSION numpy=1.8 scipy nose cython
pip
- source activate build
- conda install --yes -c distributions distributions
- conda install --yes -c datamicroscopes eigen3
- export CC=gcc-4.8
- export CXX=g++-4.8
- printenv
install: make travis_install
script: make travis_script