-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (34 loc) · 1019 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
29
30
31
32
33
34
35
36
37
38
39
language: generic
matrix:
include:
# - os: linux
# before_install:
# - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- os: osx
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh;
install:
- bash miniconda.sh -b -u -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 install conda-env
# Useful for debugging any issues with conda
- conda info -a
- conda env update
- source activate hoomd-plugins
- make
- make install
script:
- pytest
before_deploy:
- conda install -n root anaconda-client conda-build
- conda config --append channels glotzer
- conda config --append channels malramsay
- chmod +x scripts/deploy_anaconda.sh
deploy:
provider: script
script: ./scripts/deploy_anaconda.sh
on:
tags: true