-
Notifications
You must be signed in to change notification settings - Fork 56
/
.travis.yml
executable file
·61 lines (57 loc) · 1.53 KB
/
.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
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
# Based on http://conda.pydata.org/docs/travis.html
language: minimal
matrix:
fast_finish: true
include:
- python: 3.7
env: CONDA_ENV=py37
- python: 3.6
env: CONDA_ENV=py36
- python: 3.6
env: CONDA_ENV=py36-openmp
- python: 2.7
env: CONDA_ENV=py27
before_install:
- sudo apt-get update
- sudo apt-get install build-essential -y
- sudo apt-get install gfortran -y
- wget http://repo.continuum.io/miniconda/Miniconda3-3.16.0-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls true
- conda update -q conda
- conda info -a
install:
- conda env create --file ci/requirements-$CONDA_ENV.yml
- source activate test_env
# python2.7 needs to be updated, ContinuumIO/anaconda-issues#8437
- if [[ "$CONDA_ENV" == "py27" ]]; then
conda update -q python;
fi
- if [[ "$CONDA_ENV" == "py36-openmp" ]]; then
./configure --prefix=$pwd$ --with-mpi=omp;
else
./configure --prefix=$pwd$;
fi
- make clean
- make
- make install
- make pfac
- make install-pfac
script:
# validation
- cd demo
- if [[ "$CONDA_ENV" == "py36-openmp" ]]; then
make openmp;
else
make;
fi
- make check
- cd ../
# Make sure c-module can be loaded
- python -OO -c "from pfac import fac"
- python -OO -c "from pfac import crm"
- python -OO -c "from pfac import pol"
- python -OO -c "from pfac import util"
after_success: