mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-02 10:15:50 +00:00
Hopefully I'll be able to move more and more stuff from build.sh to standard build tools.
36 lines
1.2 KiB
YAML
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"
|