forked from silx-kit/silx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
76 lines (57 loc) · 1.75 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
language: python
matrix:
include:
- python: 2.7
os: linux
env: BUILD_COMMAND=sdist
- python: 3.4
os: linux
env: BUILD_COMMAND=sdist
- python: 3.5
os: linux
env: BUILD_COMMAND=sdist
- language: generic
os: osx
env: BUILD_COMMAND=bdist_wheel
cache:
apt: true
addons:
apt:
packages:
- libhdf5-serial-1.8.4
- libhdf5-serial-dev
install:
# Mac OS X specific bootstrap
- source ./ci/travis_osx.sh
- travis_osx_install_begin
# Upgrade distribution modules
- pip install --upgrade setuptools
- pip install --upgrade pip
# Install build dependencies
- pip install wheel
- pip install --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/ numpy
# Print Python info
- python ./ci/info_platform.py
- pip freeze
# Generate source package or wheel
- python setup.py $BUILD_COMMAND
- ls dist
# Mac OS X specific cleanup
- travis_osx_install_end
script:
# Mac OS X specific bootstrap
- travis_osx_run_begin
# Upgrade distribution modules
- pip install --upgrade setuptools
- pip install --upgrade pip
# Install from source package
- pip install --pre --find-links dist/ --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/ silx
# Install h5py for silx.io tests
- pip install --pre --trusted-host www.silx.org --find-links http://www.silx.org/pub/wheelhouse/ h5py
# Print Python info
- python ci/info_platform.py
- pip freeze
# Run the tests (disable silx.gui tests)
- WITH_QT_TEST=False python run_tests.py
# Mac OS X specific cleanup
- travis_osx_run_end