vdirsyncer/.travis.yml
Markus Unterwaditzer a786fdf611 Add makefile
Hopefully I'll be able to move more and more stuff from build.sh to
standard build tools.
2015-01-11 16:57:55 +01:00

36 lines
1.2 KiB
YAML

language: python
python:
- "2.7"
- "3.3"
- "3.4"
env:
- BUILD=test DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=release
# Radicale with filesystem storage (default)
- BUILD=test DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=release
PKGS='icalendar==3.6 lxml==3.0 requests==2.4.1 requests_toolbelt==0.3.0 click==3.1'
# Minimal requirements
- BUILD=test DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=devel
# Radicale-git with filesystem storage (default)
- BUILD=test DAV_SERVER=radicale RADICALE_BACKEND=multifilesystem REQUIREMENTS=devel
# Radicale-git with multifilesystem storage
- BUILD=test DAV_SERVER=radicale RADICALE_BACKEND=database REQUIREMENTS=devel
# Radicale-git with database storage (release's database storage is broken)
- BUILD=test DAV_SERVER=owncloud REQUIREMENTS=release
# Latest ownCloud release
- BUILD=test DAV_SERVER=baikal REQUIREMENTS=release
# Latest Baikal release
- BUILD=style
# flake8 with plugins
install:
- "make install-$BUILD"
- '[ -z "$PKGS" ] || pip install $PKGS'
script:
- "make $BUILD"