-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
44 lines (38 loc) · 789 Bytes
/
.travis.yml
File metadata and controls
44 lines (38 loc) · 789 Bytes
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
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
branches:
only:
- master
install:
# Install dependencies
- pip install numpy nose cython
# - pip install scipy
# Install libdynd
- git clone --depth=1 https://github.com/ContinuumIO/libdynd.git
- mkdir libdynd/build
- pushd libdynd/build
- cmake -DDYND_BUILD_TESTS=OFF ..
- make
- sudo make install
- sudo ldconfig
- popd
- mkdir build
# Build dynd-python
- pushd build
- cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
- make
- sudo make install
- popd
script:
- pushd ~
- python -c 'import dynd; dynd.test(verbosity=2, exit=True)'
- popd
notifications:
email: false
flowdock: "b08b3ba4fb86fa48121e90b5f67ccb75"
on_success: "change"
on_failure: "always" # "change"