forked from conda/conda-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
51 lines (45 loc) · 1.23 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
dist: xenial
language: python
matrix:
include:
- python: 3.7
env:
- FLAKE8=true
- CONDA_VERSION=release
dist: xenial
- python: 3.7
env:
- DOCS=true
- CONDA_VERSION=release
dist: xenial
addons:
apt:
packages:
- attr
- mercurial
install:
# show which shell we are running
- ps -ef | grep $$
- wget http://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p /opt/conda
- source /opt/conda/bin/activate
- conda update -y conda;
- conda config --set always_yes yes
- conda config --set auto_update_conda False
- conda info
# avoids a python 3.7 problem
- conda install -q cytoolz
- conda install -q anaconda-client requests filelock contextlib2 jinja2 patchelf ripgrep pyflakes beautifulsoup4 chardet pycrypto glob2 psutil pytz tqdm conda-package-handling py-lief python-libarchive-c pip
- pip install pkginfo
- if [[ "$FLAKE8" == "true" ]]; then
conda install -q flake8;
else
pip install -r requirements-docs.txt;
fi
- pip install --no-deps .
- conda info -a
script: ./ci/travis/run.sh
notifications:
flowdock: ef3821a08a791106512ccfc04c92eccb
git:
depth: 10000