mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
* Add xandikos to CI * wip * Work around missing dependency spec * Add xandikos to travis * Remove auth * Test release and devel * Refactor xandikos setup * Fix syntax error * Only test xandikos-git * Add section to supported.rst * changelog
13 lines
303 B
Bash
13 lines
303 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
pip install wsgi_intercept
|
|
|
|
if [ "$REQUIREMENTS" = "release" ] || [ "$REQUIREMENTS" = "minimal" ]; then
|
|
pip install -U xandikos
|
|
elif [ "$REQUIREMENTS" = "devel" ]; then
|
|
pip install -U git+https://jelmer.uk/code/xandikos/
|
|
else
|
|
echo "Invalid REQUIREMENTS value"
|
|
false
|
|
fi
|