-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
82 lines (75 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
language: generic
matrix:
include:
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
env:
- PYTHON_VERSION=3.5
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
env:
- PYTHON_VERSION=3.6
- os: osx
osx_image: xcode9.1
sudo: false
compiler:
- clang
env:
- PYTHON_VERSION=3.5
- os: osx
osx_image: xcode9.1
sudo: false
compiler:
- clang
env:
- PYTHON_VERSION=3.6
branches:
only:
- master
before_install:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
export CC=gcc-6;
export CXX=g++-6;
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
else
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
fi
# More conda setup to get miniconda in and a virtual env. setup
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a # Useful for debugging any issues with conda
# Create the env
- conda create -q -n test python=$PYTHON_VERSION
- source activate test
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
install:
# Install dependencies
- conda config --add channels usgs-astrogeology
- conda config --add channels conda-forge
- conda install -c conda-forge numpy cython
- conda install -c usgs-astrogeology libcsm
# Development installation
- conda install pytest pytest-cov
- pip install coveralls
script:
- python setup.py install
- pytest --cov=cycsm
after_success:
- coveralls
- source deactivate
- conda install conda-build anaconda-client
- conda config --set anaconda_upload yes
- conda build -q --token $CONDA_UPLOAD_TOKEN --python $PYTHON_VERSION .