mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Make lxml install faster by disabling optimizations
This averagely saves 30 secs or so.
This commit is contained in:
parent
50b912cbaf
commit
1a4035a5d8
1 changed files with 2 additions and 1 deletions
|
|
@ -1,7 +1,8 @@
|
|||
#!/bin/sh
|
||||
echo "The shell is $SHELL"
|
||||
set -e
|
||||
PIP_INSTALL="pip install --use-mirrors --upgrade"
|
||||
[ "$IS_TRAVIS" = "true" ] && CFLAGS=-O0 pip install lxml || true
|
||||
PIP_INSTALL="pip install --use-mirrors"
|
||||
$PIP_INSTALL --editable .
|
||||
$PIP_INSTALL -r requirements.txt
|
||||
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
||||
|
|
|
|||
Loading…
Reference in a new issue