blob: 51bfaefe1a5b52e2c0ef97837115e4dfe9b46557 (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
language: python
os:
- linux
sudo: false
addons:
apt:
packages:
- libboost-all-dev
matrix:
include:
- env: CUDA=no CLANG=yes
python: "3.6"
- env: CUDA=no
python: "2.7"
- env: CUDA=no
python: "3.6"
- env: CUDA=yes
python: "2.7"
addons:
apt:
packages:
- libboost-all-dev
- nvidia-cuda-toolkit
- nvidia-cuda-dev
- nvidia-profiler
- env: CUDA=yes
python: "3.6"
addons:
apt:
packages:
- libboost-all-dev
- nvidia-cuda-toolkit
- nvidia-cuda-dev
- nvidia-profiler
exclude:
- os: linux
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 no
- conda update conda
install:
- conda install python=$TRAVIS_PYTHON_VERSION six numpy scipy cython
- conda info -a
script:
- cd build/linux
- ./autogen.sh
- if [ x$CLANG == xyes ]; then export CXX=clang++; export CC=clang; fi
- if [ $CUDA == yes ]; then ./configure --prefix=$HOME/astra --with-python --with-cuda --with-install-type=module; else ./configure --prefix=$HOME/astra --with-python --without-cuda --with-install-type=module; fi
- make -j 4
- make test
- make install
- python -c "import astra; astra.test_noCUDA()"
|