mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
A little bit of bikeshedding again
I love to repaint it every day.
This commit is contained in:
parent
e9f1273fa8
commit
a16d8a719e
2 changed files with 4 additions and 4 deletions
|
|
@ -2,8 +2,7 @@ language: python
|
||||||
python: "2.7"
|
python: "2.7"
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- IS_TRAVIS=true # used by owncloud-testserver to install php
|
- IS_TRAVIS=true
|
||||||
- CFLAGS=-O0 # speed up lxml build
|
|
||||||
matrix:
|
matrix:
|
||||||
- DAV_SERVER=radicale_filesystem REQUIREMENTS=release
|
- DAV_SERVER=radicale_filesystem REQUIREMENTS=release
|
||||||
- DAV_SERVER=radicale_filesystem REQUIREMENTS=devel
|
- DAV_SERVER=radicale_filesystem REQUIREMENTS=devel
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,13 @@ set -e
|
||||||
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
||||||
[ -n "$REQUIREMENTS" ] || REQUIREMENTS=release
|
[ -n "$REQUIREMENTS" ] || REQUIREMENTS=release
|
||||||
|
|
||||||
|
PIP_INSTALL="pip install"
|
||||||
if [ "$IS_TRAVIS" = "true" ]; then
|
if [ "$IS_TRAVIS" = "true" ]; then
|
||||||
|
export CFLAGS=-O0 # speed up builds of packages which don't have wheels
|
||||||
PIP_INSTALL="pip install --use-wheel --find-links=http://dev.unterwaditzer.net/vdirsyncer/wheels/"
|
PIP_INSTALL="pip install --use-wheel --find-links=http://dev.unterwaditzer.net/vdirsyncer/wheels/"
|
||||||
pip install --upgrade wheel pip setuptools
|
pip install --upgrade wheel pip setuptools
|
||||||
else
|
|
||||||
PIP_INSTALL="pip install"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
$PIP_INSTALL --editable .
|
$PIP_INSTALL --editable .
|
||||||
$PIP_INSTALL -r requirements.txt
|
$PIP_INSTALL -r requirements.txt
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue