forked from thumbor/thumbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (33 loc) · 1.33 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
language: python
python:
- "2.7"
install:
#removing unwanted packages
- sudo apt-get remove --purge -y $(< unwanted_packages)
# update aptitude
- sudo apt-get update -y
- sudo apt-get install aptitude -y
# install aptitude packages
- LDFLAGS=-lm sudo aptitude install -y $(< requirements)
- sudo apt-get autoremove -y
- df -h
# weird travis-ci python paths
- export PYTHONPATH=$PYTHONPATH:/usr/lib/pymodules/python2.7/
- export PYTHONPATH=$PYTHONPATH:/usr/lib/python2.7/dist-packages
- export PYTHONPATH=$PYTHONPATH:/usr/lib/pyshared/python2.7/
- export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python2.7/site-packages/
# verify both requirements were met
- INSTALLDIR=$(python -c "import os; import numpy; print(os.path.dirname(numpy.__file__))")
# Fix distribute
- wget http://python-distribute.org/distribute_setup.py
- python distribute_setup.py
# webp - compiling from source
- wget "https://webp.googlecode.com/files/libwebp-0.4.0.tar.gz" -O libwebp-0.4.0.tar.gz
- tar xvzf libwebp-0.4.0.tar.gz
- cd libwebp-0.4.0 && ./configure --enable-libwebpmux --enable-libwebpdemux --enable-libwebpdecoder && make && sudo make install; cd ..
- sudo ldconfig
# install python requirements
- make setup
script:
# finally run tests
- make ci_test